import { env } from "../../lib/env"; import { HeartIcon } from "lucide-react"; import Link from "../Link"; import cn from "../../lib/helpers/classnames"; import * as config from "../../lib/config"; import type { ComponentPropsWithoutRef } from "react"; export type FooterProps = ComponentPropsWithoutRef<"footer">; const Footer = ({ className, ...rest }: FooterProps) => { return ( ); }; export default Footer;