17 lines
385 B
TypeScript
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>
|
|
);
|
|
}
|