diff --git a/app/components/Footer.tsx b/app/components/Footer.tsx index 26901ea..1fc7348 100644 --- a/app/components/Footer.tsx +++ b/app/components/Footer.tsx @@ -1,61 +1,108 @@ -import { AnchorHTMLAttributes, PropsWithChildren } from "react"; -import { ArrowTopRightOnSquareIcon } from "@heroicons/react/24/outline"; - -interface LinkProps - extends PropsWithChildren, - AnchorHTMLAttributes { - href: string; - useIcon?: boolean; -} - -const Link = ({ href, rel, useIcon = true, children }: LinkProps) => { - rel = ["noopener", rel].join(" "); - - return ( - - {children} - {useIcon && } - - ); -}; +import Link from "next/link"; +import { Separator } from "@/components/ui/separator"; export const Footer = () => { return ( -