import React, { useEffect } from "react"; import { motion } from "framer-motion"; import { Navigation } from "../components/Navigation"; import { Footer } from "../components/Footer"; import { Button } from "../components/ui/button"; import { CheckCircle, ArrowRight, FileText, Eye } from "lucide-react"; import { useNavigate } from "react-router-dom"; // Smooth scroll to top function const scrollToTop = () => { const scrollStep = -window.scrollY / (300 / 15); // Duration in ms / frame rate const scrollInterval = () => { if (window.scrollY !== 0) { window.scrollBy(0, scrollStep); window.requestAnimationFrame(scrollInterval); } }; window.requestAnimationFrame(scrollInterval); }; export const ThankYou = () => { // Scroll to top on component mount useEffect(() => { const scrollTimeout = setTimeout(() => { scrollToTop(); }, 100); return () => clearTimeout(scrollTimeout); }, []); const navigate = useNavigate(); return (
Our team will review your request and get back to you shortly.
In the meantime, feel free to explore our work or check out our latest insights.
Explore our successful projects and client stories
Read our latest articles and industry insights
Discover our comprehensive range of services
Expected response time: 24-48 hours • Need immediate assistance? Contact us at{" "} ideas@wdipl.com