import Link from 'next/link'; import { AppLogo } from '~/components/app-logo'; import appConfig from '~/config/app.config'; const YEAR = new Date().getFullYear(); export function SiteFooter() { return ( ); } function FooterSectionHeading(props: React.PropsWithChildren) { return (

{props.children}

); } function FooterSectionList(props: React.PropsWithChildren) { return ( ); } function FooterLink(props: React.PropsWithChildren) { return (
  • a]:transition-colors [&>a]:hover:text-gray-800' + ' dark:[&>a]:hover:text-white' } > {props.children}
  • ); }