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 (
{/* */} {/* Thank You Section */}
{/* Background decorative elements */}
{/* Success Icon */}
{/* Main Content Container */} {/* Headline */} ✅ Thank You! We've Received Your Message. {/* Subtext */}

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.

{/* Call-to-Action Buttons */}
{/* Additional Quick Links */} navigate('/case-studies')} >

Case Studies

Explore our successful projects and client stories

navigate('/resources/blog')} >

Latest Insights

Read our latest articles and industry insights

navigate('/services')} >

Our Services

Discover our comprehensive range of services

{/* Footer Note */}

Expected response time: 24-48 hours • Need immediate assistance? Contact us at{" "} ideas@wdipl.com

{/*
); };