import { useMemo } from "react"; import { cn } from "@/lib/utils"; export type FooterProps = { className?: string; }; export function Footer({ className }: FooterProps) { const year = useMemo(() => new Date().getFullYear(), []); return ( ); }