import { type PropsWithChildren } from 'react' import { InnerContainer, OuterContainer } from '@/components/Container' import HybridLink, { type Props as HybridLinkProps } from './HybridLink' const NavLink = ({ href, children, }: PropsWithChildren<{ href: HybridLinkProps['href'] }>) => { return ( {children} ) } const Footer = () => { return ( ) } export default Footer