Update app/(auth)/signup/page.tsx
This commit is contained in:
parent
1d7b71d57f
commit
c27b9af943
|
|
@ -0,0 +1,15 @@
|
||||||
|
import { SignupForm } from "@/components/signup";
|
||||||
|
import { Metadata } from "next";
|
||||||
|
|
||||||
|
export const metadata: Metadata = {
|
||||||
|
title: "Sign Up - Mnémosyne",
|
||||||
|
description:
|
||||||
|
"Mnémosyne - 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 />;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue