'use client'; /*eslint-disable*/ import Link from '@/components/link/Link'; import { Flex, List, ListItem, Text, useColorModeValue, } from '@chakra-ui/react'; export default function Footer() { const textColor = useColorModeValue('gray.500', 'white'); return ( {' '} © {new Date().getFullYear()} Horizon UI Boilerplate. All Rights Reserved. Homepage Terms of Use Privacy Policy ); }