Add image to fill footer space

This commit is contained in:
Michael Fatemi 2021-01-06 00:21:10 -05:00
parent ed7114932c
commit 2d9b43feea

View File

@ -2,6 +2,7 @@ import React from 'react';
import '../css/footer.css';
import BlockContent from '@sanity/block-content-to-react';
import useFooter from '../hooks/useFooter';
import Centered from './Centered';
export default function Footer() {
let footer = useFooter();
@ -20,6 +21,11 @@ export default function Footer() {
{footer.columns.map((col, index) => (
<div className='footer-col' key={index}>
<BlockContent blocks={col.content} />
{index === 2 ? (
<Centered>
<img src='/images/banner.png' alt='TJHSST' height='80px'></img>
</Centered>
) : null}
</div>
))}
</div>