Update app/(auth)/login/page.tsx

This commit is contained in:
kleap-admin 2026-01-16 15:55:58 +00:00
parent 6e15e3ceae
commit 12ac58c535
1 changed files with 15 additions and 0 deletions

15
app/(auth)/login/page.tsx Normal file
View File

@ -0,0 +1,15 @@
import { LoginForm } from "@/components/login";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Login - Mnémosyne",
description:
"Mnémosyne - Sign in to access your account and continue building amazing applications.",
openGraph: {
images: ["https://ai-saas-template-aceternity.vercel.app/banner.png"],
},
};
export default function LoginPage() {
return <LoginForm />;
}