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

This commit is contained in:
kleap-admin 2026-01-15 13:40:48 +00:00
parent 5611dba6c6
commit 52b88f888c
1 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,15 @@
import { SignupForm } from "@/components/signup";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Sign Up - [App Name]",
description:
"[App Name] - Create your account and start building powerful applications today.",
openGraph: {
images: ["https://ai-saas-template-aceternity.vercel.app/banner.png"],
},
};
export default function SignupPage() {
return <SignupForm />;
}