Neah-Enkun/front/app/signin/page.tsx

15 lines
332 B
TypeScript

import { Metadata } from "next";
import { LoginCard } from "@/components/auth/login-card";
export const metadata: Metadata = {
title: "Enkun - Connexion",
};
export default function SignInPage() {
return (
<div className='flex h-[80vh] w-screen flex-col items-center justify-center'>
<LoginCard />
</div>
);
}