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

We Are About to Witness Something Great

Empower your business with our cutting-edge IT services and unmatched support, tailored for transformative growth and harness innovation.

  • Complete authentication system with email verification
  • Social login with Google and GitHub integration
  • Secure JWT token management and refresh
{isAuthenticated ? "View Dashboard" : "Get Started"}
); } // Extend Window interface declare global { interface Window { WOW: any; } }