import React, { type FC } from 'react'; import useThemeConfig from '../../hooks/useThemeConfig'; import { Heading, Stack } from '@chakra-ui/react'; import Social from '../../components/Social'; const Footer: FC = () => { const themeConfig = useThemeConfig(); return ( ); }; export default Footer;