import { Hero } from "@/app/components/Hero"
import { Highlights } from "@/app/components/Highlights"
import { Experience } from "@/app/components/Experience"
import { Services } from "@/app/components/Services"
import { Products } from "@/app/components/Products"
import { Work } from "@/app/components/Work"
import { Stats } from "@/app/components/Stats"
import { Reviews } from "@/app/components/Reviews"
import { Pricing } from "@/app/components/Pricing"
import { Contact } from "@/app/components/Contact"

export default function HomePage() {
  return (
    <>
      <Hero />
      <Highlights />
      <Experience />
      <Services />
      <Products />
      <Work />
      <Stats />
      <Reviews />
      <Pricing />
      <Contact />
    </>
  )
}
