"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 (
Codenuk
Complete these easy steps to register your account.
{isSignIn ? "Enter your credentials to access your account." : "Enter your personal data to create your account."}