diff --git a/src/components/Layout/components/Footer.tsx b/src/components/Layout/components/Footer.tsx index fe2a22fb..3543c288 100644 --- a/src/components/Layout/components/Footer.tsx +++ b/src/components/Layout/components/Footer.tsx @@ -1,19 +1,11 @@ import Link from 'next/link'; -import { usePathname } from 'next/navigation'; -import Button from '@components/Button'; import Icon from '@components/Icon'; import { ROUTES } from '@constants/routes'; -import { useModalStore } from '@stores/modal'; import * as styles from '../style.css'; const Footer = () => { - const pathname = usePathname(); - const { openModal } = useModalStore(); - - const handleLoginButtonClick = () => openModal('login'); - return (