2026-07-08 16:29:41 +05:30

17 lines
385 B
TypeScript

import { Hero } from "@/components/marketing/Hero";
import { Navbar } from "@/components/marketing/Navbar";
import { CTA, FeatureGrid, PersonaGrid, Pricing } from "@/components/marketing/Sections";
export default function HomePage() {
return (
<main>
<Navbar />
<Hero />
<FeatureGrid />
<PersonaGrid />
<Pricing />
<CTA />
</main>
);
}