This commit is contained in:
2026-03-30 23:29:21 +07:00
commit c3c2d860ba
290 changed files with 19929 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import SignUpForm from "@/components/auth/SignUpForm";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Next.js SignUp Page | TailAdmin - Next.js Dashboard Template",
description: "This is Next.js SignUp Page TailAdmin Dashboard Template",
// other metadata
};
export default function SignUp() {
return <SignUpForm />;
}