- marketing/components/footer.tsx: multi-column footer with product, resources, and legal columns — Privacy Policy clearly linked on homepage (satisfies Google OAuth consent screen requirement) - Replaces thin single-line footer in layout.tsx Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
452 B
TypeScript
16 lines
452 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";
|
|
export { Footer } from "./footer";
|
|
|