import clsx from "clsx"; import Link from "../Link"; import { GoHeartFill } from "react-icons/go"; import { SiNextdotjs } from "react-icons/si"; import config from "../../lib/config"; import type { ComponentPropsWithoutRef } from "react"; import styles from "./Footer.module.css"; export type FooterProps = ComponentPropsWithoutRef<"footer">; const Footer = ({ className, ...rest }: FooterProps) => { return ( ); }; export default Footer;