import Layout from "@/components/layout/Layout" import Link from "next/link" import { useState } from "react" export default function MyAccount() { const [activeIndex, setActiveIndex] = useState(1) const handleOnClick = (index) => { setActiveIndex(index) // remove the curly braces } return ( <>
{/*-============spacing==========-*/}
{/*-============spacing==========-*/}

Start For Free

Create New Account

  • handleOnClick(1)}>
  • handleOnClick(2)}>

Lost your password?

A link to set a new password will be sent to your email address.

Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our privacy policy.

{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
) }