From 51aa45206fee918fa2908931b81cace27afa29ec Mon Sep 17 00:00:00 2001 From: yoosangwook Date: Thu, 5 Jun 2025 10:21:22 +0900 Subject: [PATCH] refactor: simplify Footer component structure - Removed unnecessary imports and streamlined the Footer component by consolidating content into a single div, enhancing readability and maintainability. --- src/components/ui/common/Footer.tsx | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/components/ui/common/Footer.tsx b/src/components/ui/common/Footer.tsx index d44b8df..d1e8f0f 100644 --- a/src/components/ui/common/Footer.tsx +++ b/src/components/ui/common/Footer.tsx @@ -1,21 +1,10 @@ 'use client' -import Link from 'next/link' -import Config from '@/config/config.export' - export default function Footer() { return ( <> )