"use client"; import Link from "next/link"; import { useEffect, useState } from "react"; interface HeroSectionProps { isAuthenticated: boolean; } export default function HeroSection({ isAuthenticated }: HeroSectionProps) { const [mounted, setMounted] = useState(false); useEffect(() => { setMounted(true); // Initialize WOW.js after mount if (typeof window !== "undefined" && window.WOW) { new window.WOW().init(); } }, []); return (

Best IT Solution Agency For Your Business

At Solvexa, we are dedicated transforming your digital aspirations into reality. With a passion for innovation and a commitment to excellence.

{isAuthenticated ? "Go to Dashboard" : "Get Started"}
); } // Extend Window interface declare global { interface Window { WOW: any; } }