15 lines
417 B
TypeScript
15 lines
417 B
TypeScript
/**
|
|
* Marketing Components
|
|
* All marketing-specific components for the landing page
|
|
*/
|
|
|
|
export { Hero } from "./hero";
|
|
export { EmotionalHook } from "./emotional-hook";
|
|
export { WhoItsFor } from "./who-its-for";
|
|
export { Transformation } from "./transformation";
|
|
export { Features } from "./features";
|
|
export { HowItWorks } from "./how-it-works";
|
|
export { Pricing } from "./pricing";
|
|
export { CTA } from "./cta";
|
|
|