import dynamic from 'next/dynamic' import Link from "next/link" import { useState } from "react" const CounterUp = dynamic(() => import('../elements/CounterUp'), { ssr: false, }) export default function Content4() { const [activeIndex, setActiveIndex] = useState(1) const handleOnClick = (index) => { setActiveIndex(index) } return ( <>
{/*-============spacing==========-*/}
{/*-============spacing==========-*/}

Check Your Favorite Insurance

Get Started Favorite Insurance

{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
  • handleOnClick(1)}>
  • handleOnClick(2)}>
  • handleOnClick(3)}>
  • handleOnClick(4)}>
Selected Value: 6562
{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
img
Life Insurance
img
Health Insurance

+

Years Of Experience
img
{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
) }