1 2 3 4 5 6 7 8 9 10 11
x2 x2
import FooterInteractive from "@islands/FooterInteractive.tsx"; interface FooterProps { className?: string; } const Footer = ({ className = "" }: FooterProps) => { return <FooterInteractive className={className} />; }; export default Footer;