import { Metadata } from 'next'; import Link from 'next/link'; import { useTranslations } from 'next-intl'; export const metadata: Metadata = { title: 'Home page', }; export default function Home() { const t = useTranslations('HomePage'); return (
dash board
); }