From 24e194c221960f08bd6b66a452f3abba7a68902e Mon Sep 17 00:00:00 2001 From: jhynsoo Date: Tue, 8 Oct 2024 10:45:28 +0900 Subject: [PATCH] =?UTF-8?q?Design:=20footer,=20home=20=EB=94=94=EC=9E=90?= =?UTF-8?q?=EC=9D=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/Footer/index.tsx | 30 ++++++++------------ frontend/src/components/PageLayout/index.tsx | 2 +- frontend/src/pages/Home.tsx | 10 +++---- 3 files changed, 18 insertions(+), 24 deletions(-) diff --git a/frontend/src/components/Footer/index.tsx b/frontend/src/components/Footer/index.tsx index 4459e8f..cdbd3fd 100644 --- a/frontend/src/components/Footer/index.tsx +++ b/frontend/src/components/Footer/index.tsx @@ -1,24 +1,18 @@ -import * as React from 'react'; -import { cn } from '@/lib/utils'; +import { Link } from 'react-router-dom'; -export interface FooterProps extends React.HTMLAttributes {} - -export default function Footer({ className, ...props }: FooterProps) { +export default function Footer() { return ( -