'use client' import Layout from "@/components/layout/Layout" import { useState } from 'react' import Link from "next/link" export default function WhyChooseUs() { const [isActive, setIsActive] = useState({ status: false, key: 1, }) const handleToggle = (key) => { if (isActive.key === key) { setIsActive({ status: false, }) } else { setIsActive({ status: true, key, }) } } return ( <> {/* gallery */}
{/* Repeat the above block for other gallery items */}
{/* Repeat the above block for other gallery items */}
{/* Repeat the above block for other gallery items */}
{/* Repeat the above block for other gallery items */}
{/* Repeat the above block for other gallery items */}
{/* Repeat the above block for other gallery items */}
  • 1
  • 2
  • 3
{/* gallery end */} {/* subscibe */} {/*

Subscribe for the exclusive updates!

*/} {/* subscibe end */} ) }