Files
Mayne0213 f78454c2a1
Some checks failed
Build Docker Image / build-and-push (push) Has been cancelled
CI / lint-and-build (push) Has been cancelled
CHORE(merge): merge from develop
- Initial setup and all features from develop branch
- Includes: auth, deploy, docker, style fixes
- K3S deployment configuration
2026-01-06 17:29:16 +09:00

39 lines
1.2 KiB
TypeScript

import React from "react";
import SignUpForm from "@/components/auth/SignUpForm";
export default function SignUpPage() {
return (
<div className="min-h-screen bg-gray-50 flex items-center justify-center p-6 relative">
<div className="w-full max-w-md relative z-10 py-12">
{/* Header Section */}
<div className="text-center mb-8">
<h1 className="text-4xl text-gray-900 mb-2 font-black tracking-tight">
</h1>
<p className="text-gray-600 font-semibold">
</p>
</div>
<SignUpForm />
{/* Bottom Text */}
<div className="text-center mt-6">
<p className="text-xs text-gray-500">
{" "}
<button className="text-[#6b95c6] hover:underline font-medium">
</button>
{" "}
<button className="text-[#6b95c6] hover:underline font-medium">
</button>
.
</p>
</div>
</div>
</div>
);
}