Update app/(auth)/login/page.tsx
This commit is contained in:
parent
6e15e3ceae
commit
12ac58c535
|
|
@ -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 />;
|
||||
}
|
||||
Loading…
Reference in New Issue