import React from 'react'; import '../css/footer.css'; import BlockContent from '@sanity/block-content-to-react'; import useFooter from '../hooks/useFooter'; export default function Footer() { let footer = useFooter(); if (!footer) { return null; } return (
Footer Banner
{footer.columns.map((col, index) => { return (
); })}
); }