import { Header } from '@/components/layout/Header';
import { HeroSection } from '@/components/sections/HeroSection';
import { Certifications } from '@/components/sections/Certifications';
import { PopularTours } from '@/components/sections/PopularTours';
import { DestinationExperts } from '@/components/sections/DestinationExperts';
import { FeaturesGrid } from '@/components/sections/FeaturesGrid';
import { TrustSection } from '@/components/sections/TrustSection';
import { Testimonials } from '@/components/sections/Testimonials';
import { FAQ } from '@/components/sections/FAQ';
import { BlogSection } from '@/components/sections/BlogSection';
import { Footer } from '@/components/layout/Footer';

export default function Home() {
  return (
    <main className="flex min-h-screen flex-col bg-background">
      <Header />
      <HeroSection />
      <Certifications />
      <PopularTours />
      <DestinationExperts />
      <FeaturesGrid />
      <TrustSection />
      <Testimonials />
      <FAQ />
      <BlogSection />
      <Footer />
    </main>
  );
}
