"use client"; import { useState } from "react"; export default function Faqs1() { const [isActive, setIsActive] = useState({ status: false, key: "", }); const handleClick = (key) => { if (isActive.key === key) { setIsActive({ status: false, }); } else { setIsActive({ status: true, key, }); } }; return ( <>
{/*
Need more help?

Feeling inquisitive? Have a read through some of our FAQs or contact our Supporters for help

*/}

Let's launch your next big campaign!

{/*

Our power of choice is untrammelled and when nothing preventsbeing able to do what we like best every pleasure.

*/}
handleClick(1)}>
We'll work with you to determine the appropriate budget and plan of action necessary to help your business reach new heights.
handleClick(2)}>
Whether it's on-site optimizations, performance monitoring, social media management, or digital advertising, our dedicated team of experts will get the job done!
handleClick(3)}>
All deliverables will be implemented within the agreed-upon timeframe and you will receive regular performance monitoring updates related to increased ranking, traffic growth, conversions and all other metrics.
handleClick(4)}>
Experience the growth that comes with increased search visibiility and a more polished and optimized website. We'll work with you in the future to pivot wherever necessary to ensure that your company continues to thrive and expand.
); }