27 lines
405 B
TypeScript
27 lines
405 B
TypeScript
import {
|
|
Hero,
|
|
EmotionalHook,
|
|
WhoItsFor,
|
|
Transformation,
|
|
Features,
|
|
HowItWorks,
|
|
Pricing,
|
|
CTA,
|
|
} from "@/marketing/components";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<div className="flex flex-col">
|
|
<Hero />
|
|
<EmotionalHook />
|
|
<WhoItsFor />
|
|
<Transformation />
|
|
<Features />
|
|
<HowItWorks />
|
|
<Pricing />
|
|
<CTA />
|
|
</div>
|
|
);
|
|
}
|
|
|