'use client' import { useState } from "react" export default function Section7() { const [isTab, setIsTab] = useState(1) const handleTab = (i: number) => { setIsTab(i) } return ( <>
The Redefines Conferences

How You Can Participate

) }