diff --git a/src/components/footer.tsx b/src/components/footer.tsx index dd84324..5e82f0e 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -2,7 +2,11 @@ import { Code, RssIcon } from "lucide-react"; import { Button } from "@/components/ui/button"; import formatDate from "@/utils/format-date"; -export default function Footer() { +type Props = { + lang: "en" | "es"; +}; + +export default function Footer(props: Props) { return (