"use client" import { useState } from "react" import Link from "next/link" export default function RegisterPage() { const [step, setStep] = useState(1) return (

Create Account

Join Harifsport today

{/* Steps */}
{["Personal Info", "Account Details", "Verification"].map((s, i) => (
{i + 1}. {s}
))}
{step === 1 && ( <>
)} {step === 2 && ( <>
)} {step === 3 && (

Account Created!

Please verify your phone number to start betting.

)}
{step > 1 && ( )}
{step === 1 && (

Already have an account?{" "} Login

)}
) }