"use client";

import {
  Navbar,
  Hero,
  About,
  ExploreCities,
  MobileApp,
  Contact,
  Testimonials,
  Blog,
  Footer,
} from "@/components/home";

export default function Home() {
  return (
    <div className="flex flex-1 flex-col">
      <Navbar />
      <Hero />
      <About />
      <ExploreCities />
      <MobileApp />
      <Contact />
      <Testimonials />
      <Blog />
      <Footer />
    </div>
  );
}
