From 4fdf2e3e240a7b973d5cdd2731a72e17baaf0294 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 2 Jun 2026 23:22:34 +0000 Subject: [PATCH] Update src/components/sections/footer/FooterSimpleCard.tsx --- .../sections/footer/FooterSimpleCard.tsx | 82 ------------------- 1 file changed, 82 deletions(-) diff --git a/src/components/sections/footer/FooterSimpleCard.tsx b/src/components/sections/footer/FooterSimpleCard.tsx index 47dcb56..e69de29 100644 --- a/src/components/sections/footer/FooterSimpleCard.tsx +++ b/src/components/sections/footer/FooterSimpleCard.tsx @@ -1,82 +0,0 @@ -import { useButtonClick } from "@/hooks/useButtonClick"; - -type FooterLink = { - label: string; - href?: string; - onClick?: () => void; -}; - -type FooterColumn = { - title: string; - items: FooterLink[]; -}; - -const FooterLinkItem = ({ label, href, onClick }: FooterLink) => { - const handleClick = useButtonClick(href, onClick); - - return ( - - ); -}; - -const FooterBottomLink = ({ label, href, onClick }: FooterLink) => { - const handleClick = useButtonClick(href, onClick); - - return ( - - ); -}; - -const FooterSimpleCard = ({ - brand, - columns, - copyright, - links, -}: { - brand: string; - columns: FooterColumn[]; - copyright: string; - links: FooterLink[]; -}) => { - return ( - - ); -}; - -export default FooterSimpleCard;