import { CtaSection } from "@/components/marketing/cta-section";
import { FeatureGrid } from "@/components/marketing/feature-grid";
import { HomeHero } from "@/components/marketing/home-hero";

export default function HomePage() {
  return (
    <>
      <HomeHero />
      <FeatureGrid />
      <CtaSection />
    </>
  );
}
