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