import ToursHeroSection from "@/components/tours/tours-hero-section"
import ToursSearchSection from "@/components/tours/tours-search-section"
import ToursDestinationsSection from "@/components/tours/tours-destinations-section"
import Footer from "@/components/footer"

export default function ToursPage() {
  return (
    <div className="min-h-screen">
      <ToursHeroSection />
      <ToursSearchSection />
      <ToursDestinationsSection />
    </div>
  )
}
