"use client"; import React, { useEffect, useRef } from "react"; const ContactSection = () => { const sectionRef = useRef(null); useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const elements = entry.target.querySelectorAll(".wow"); elements.forEach((el) => { const htmlEl = el as HTMLElement; const delay = htmlEl.dataset.wowDelay || "0ms"; setTimeout(() => { htmlEl.classList.add("animated"); if (htmlEl.classList.contains("fadeInLeft")) { htmlEl.classList.add("fadeInLeft"); } else if (htmlEl.classList.contains("fadeInRight")) { htmlEl.classList.add("fadeInRight"); } else { htmlEl.classList.add("fadeInUp"); } htmlEl.style.visibility = "visible"; }, parseInt(delay)); }); observer.unobserve(entry.target); } }); }, { threshold: 0.1 } ); if (sectionRef.current) { observer.observe(sectionRef.current); } return () => observer.disconnect(); }, []); const handleSubmit = (e: React.FormEvent) => { e.preventDefault(); // Handle form submission logic here }; return (

Let's call together just contact line

++255225551, +6544144444

Contact Support
Business Growth
Get In Contact

Get free Business touch Customers me.

Business tailored it design, management & support services
business agency elit, sed do eiusmod tempor.

); }; export default ContactSection;