feat: implement authentication modules and add daily statistics dashboard component
Build and Release / release (push) Successful in 28s

This commit is contained in:
2026-05-14 11:40:37 +07:00
parent 6363377b9a
commit a7c3aecc6e
9 changed files with 70 additions and 26 deletions
@@ -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 />;
}