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