import Link from 'next/link'; import Image from 'next/image'; import { useRouter } from 'next/router'; import styles from '@/styles/Tab.module.css'; interface TabProps { icon: string; filename: string; path: string; } const Tab = ({ icon, filename, path }: TabProps) => { const router = useRouter(); return (
{filename}

{filename}

); }; export default Tab;