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

This commit is contained in:
kleap-admin 2026-01-15 13:03:48 +00:00
parent b0f50bc8c8
commit e470045861
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 - [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 <LoginForm />;
}