Files
no-copy-frontend/src/app/[locale]/page.tsx
T
2025-12-11 18:28:35 +07:00

22 lines
380 B
TypeScript

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 (
<div>
<main>
<Link key={'dashboard'}
href={'/pages/dashboard'}
>dash board</Link>
</main>
</div>
);
}