diff --git a/app/(auth)/login/page.tsx b/app/(auth)/login/page.tsx new file mode 100644 index 0000000..3199097 --- /dev/null +++ b/app/(auth)/login/page.tsx @@ -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 ; +}