"use client" import { useState } from "react" import { SignInForm } from "./signin-form" import { SignUpForm } from "./signup-form" export function AuthPage() { const [isSignIn, setIsSignIn] = useState(false) return (
{/* Left: Gradient panel with steps */}
{/* subtle grain */}
{/* soft circular accents (minimal) */}

Codenuk

Get Started with Us

Complete these easy steps to register your account.

{/* Step 1 */}
1
Sign up your account
{/* Step 2 */}
2
Set up your workspace
{/* Step 3 */} {/*
3
Set up your profile
*/}
{/* Right: Form area */}

{isSignIn ? "Sign In Account" : "Sign Up Account"}

{isSignIn ? "Enter your credentials to access your account." : "Enter your personal data to create your account."}

{isSignIn ? ( setIsSignIn(false)} /> ) : ( setIsSignIn(true)} /> )}
) }