From e470045861f1554bdbb39c31741deaf58da4d817 Mon Sep 17 00:00:00 2001 From: kleap-admin Date: Thu, 15 Jan 2026 13:03:48 +0000 Subject: [PATCH] Update app/(auth)/login/page.tsx --- app/(auth)/login/page.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 app/(auth)/login/page.tsx diff --git a/app/(auth)/login/page.tsx b/app/(auth)/login/page.tsx new file mode 100644 index 0000000..bf5fb37 --- /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 - [App Name]", + description: + "[App Name] - 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 ; +}