import { Mail, Clock, BookOpen, HelpCircle } from 'lucide-react'; import { ContactForm } from '@/components/contact/ContactForm'; import { ContactInfoCard } from '@/components/contact/ContactInfoCard'; import { ContactFAQ } from '@/components/contact/ContactFAQ'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Link } from 'react-router-dom'; import { Header } from '@/components/layout/Header'; import { useDocumentTitle } from '@/hooks/useDocumentTitle'; export default function Contact() { useDocumentTitle('Contact Us'); return (
{/* Hero Section */}

Get in Touch

Have questions or feedback? We're here to help. Send us a message and we'll respond as soon as possible.

{/* Contact Form - Main Content */}
Send Us a Message Fill out the form below and we'll get back to you within 24-48 hours
{/* Sidebar - Quick Info */}
{/* Email Support */} support@thrillwiki.com } /> {/* Response Time */} We typically respond within 24-48 hours during business days. Complex inquiries may take longer.

} /> {/* Documentation */} Submission Guidelines Terms of Service Privacy Policy
} /> {/* Help Resources */} Check out our FAQ section below for answers to common questions. Many issues can be resolved quickly by reviewing our documentation.

} />
{/* FAQ Section */}
); }