Add src/app/signup/page.tsx

This commit is contained in:
2026-05-16 21:47:57 +00:00
parent 4567190aba
commit e9d13ee1b2

42
src/app/signup/page.tsx Normal file
View File

@@ -0,0 +1,42 @@
"use client";
import { useState } from "react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ReactLenis from "lenis/react";
export default function SignupPage() {
const [email, setEmail] = useState("");
const [password, setPassword] = useState("");
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="SANIS"
navItems={[{ name: "Home", id: "/" }]}
/>
<div className="flex flex-col items-center justify-center min-h-screen p-4">
<div className="w-full max-w-md p-8 border rounded-lg shadow-lg">
<h1 className="mb-6 text-2xl font-bold">Create Account</h1>
<input
type="email"
placeholder="Email"
className="w-full p-3 mb-4 border rounded"
value={email}
onChange={(e) => setEmail(e.target.value)}
/>
<input
type="password"
placeholder="Password"
className="w-full p-3 mb-6 border rounded"
value={password}
onChange={(e) => setPassword(e.target.value)}
/>
<button className="w-full p-3 text-white bg-black rounded">Sign Up</button>
</div>
</div>
</ReactLenis>
</ThemeProvider>
);
}