Files
Frontend/src/app/(blank-layout-pages)/(guest-only)/login/page.tsx
T

26 lines
536 B
TypeScript
Raw Normal View History

2026-02-19 01:15:36 +03:30
// Next Imports
2026-03-24 13:53:21 +03:30
import type { Metadata } from "next";
import { getTranslations } from "next-intl/server";
2026-02-19 01:15:36 +03:30
// Component Imports
2026-03-24 13:53:21 +03:30
import Login from "@views/Login";
2026-02-19 01:15:36 +03:30
export async function generateMetadata(): Promise<Metadata> {
2026-03-24 13:53:21 +03:30
const t = await getTranslations("login");
return {
2026-03-24 13:53:21 +03:30
title: t("title"),
description: t("description"),
};
2026-02-19 01:15:36 +03:30
}
const LoginPage = async () => {
2026-03-24 13:53:21 +03:30
return (
<div className="flex flex-col justify-center items-center min-bs-[100dvh] p-6">
<Login />
</div>
);
};
2026-02-19 01:15:36 +03:30
2026-03-24 13:53:21 +03:30
export default LoginPage;