import { Link } from '@chakra-ui/next-js'
import { Box, Flex, Stack, useColorModeValue } from '@chakra-ui/react'
export default function Footer({ siteName }) {
return (
<>
>
)
}
const FooterMenu = () => {
const linkColor = useColorModeValue('gray.600', 'gray.200')
const linkHoverColor = useColorModeValue('gray.800', 'white')
return (
{NAV_ITEMS.map((navItem) => (
{navItem.label}
))}
)
}
const NAV_ITEMS = [
{
label: 'Vendors',
href: '/vendors',
},
{
label: 'About Us',
href: '/about-us',
},
]