16 lines
422 B
TypeScript
16 lines
422 B
TypeScript
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 />;
|
|
}
|