32 lines
1.2 KiB
TypeScript
32 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
export default function RegisterPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="circleGradient"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div className="flex min-h-screen items-center justify-center">
|
|
<div className="w-full max-w-md p-8 border rounded-lg">
|
|
<h1 className="text-2xl font-bold mb-6">Register</h1>
|
|
<form className="flex flex-col gap-4">
|
|
<input type="text" placeholder="Full Name" className="p-2 border rounded" />
|
|
<input type="email" placeholder="Email" className="p-2 border rounded" />
|
|
<input type="password" placeholder="Password" className="p-2 border rounded" />
|
|
<button className="bg-primary text-white p-2 rounded">Create Account</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |