import { useRouter } from "next/router"; import styles from "./PageTitle.module.scss"; type Props = { title: unknown; }; export default function Content({ title }: Props) { const router = useRouter(); return (

{title}

); }