Files
no-copy-frontend/src/app/[locale]/page.tsx
T

22 lines
380 B
TypeScript
Raw Normal View History

2025-11-24 18:52:32 +07:00
import { Metadata } from 'next';
2025-11-25 17:13:16 +07:00
import Link from 'next/link';
2025-12-10 16:39:13 +07:00
import { useTranslations } from 'next-intl';
2025-11-24 18:52:32 +07:00
export const metadata: Metadata = {
title: 'Home page',
};
2025-11-24 18:24:36 +07:00
export default function Home() {
2025-12-10 16:39:13 +07:00
const t = useTranslations('HomePage');
2025-11-24 18:52:32 +07:00
return (
2025-12-11 18:28:35 +07:00
<div>
<main>
2025-11-25 17:13:16 +07:00
<Link key={'dashboard'}
href={'/pages/dashboard'}
>dash board</Link>
2025-11-24 18:52:32 +07:00
</main>
</div>
);
2025-11-24 18:24:36 +07:00
}