import clsx from "clsx"; import { HeartIcon } from "lucide-react"; import Link from "../Link"; import * as config from "../../lib/config"; import { RELEASE_TIMESTAMP } from "../../lib/config/constants"; 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;