diff --git a/src/components/sections/footer/FooterMinimal.tsx b/src/components/sections/footer/FooterMinimal.tsx index 594431e..e69de29 100644 --- a/src/components/sections/footer/FooterMinimal.tsx +++ b/src/components/sections/footer/FooterMinimal.tsx @@ -1,57 +0,0 @@ -import type { LucideIcon } from "lucide-react"; -import { useButtonClick } from "@/hooks/useButtonClick"; -import AutoFillText from "@/components/ui/AutoFillText"; -import { resolveIcon } from "@/utils/resolve-icon"; - -type SocialLink = { - icon: string | LucideIcon; - href?: string; - onClick?: () => void; -}; - -const SocialLinkItem = ({ icon, href, onClick }: SocialLink) => { - const Icon = resolveIcon(icon); - const handleClick = useButtonClick(href, onClick); - - return ( - - - - ); -}; - -const FooterMinimal = ({ - brand, - copyright, - socialLinks, -}: { - brand: string; - copyright: string; - socialLinks?: SocialLink[]; -}) => { - return ( - - ); -}; - -export default FooterMinimal;