diff --git a/src/components/layout/Footer.tsx b/src/components/layout/Footer.tsx index 872616f..5737e7c 100644 --- a/src/components/layout/Footer.tsx +++ b/src/components/layout/Footer.tsx @@ -1,27 +1,22 @@ import Link from 'next/link'; -import { useRouter } from 'next/router'; import styles from 'src/styles/modules/layout/footer.module.scss'; const links = [ - { path: '/about', text: 'About' }, - { path: '/find', text: 'Find' }, - { path: '/privacy', text: 'Privacy' }, - { path: '/contact', text: 'Contact' }, + { url: 'https://github.com/zyachel/libremdb', text: 'Source' }, + { url: 'https://git.ngn.tf/ngn/libremdb', text: 'Modified Source' }, ] as const; const Footer = () => { - const { pathname } = useRouter(); - return (