From bd5f92c7b3036d0e561ffd64dc65cbc182dd5ae9 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Wed, 24 Dec 2025 19:03:03 +0100 Subject: [PATCH] Add newsletter signup component to homepage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The NewsletterSignup component was created but never added to the page. This adds it between the CTA section and footer. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- app/page.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/page.tsx b/app/page.tsx index dd3ceed..4350fa2 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -5,6 +5,7 @@ import { TechnicalSection } from "@/components/technical-section" import { VisionSection } from "@/components/vision-section" import { WhyNowSection } from "@/components/why-now-section" import { CTASection } from "@/components/cta-section" +import { NewsletterSignup } from "@/components/newsletter-signup" import { Footer } from "@/components/footer" export default function HomePage() { @@ -17,6 +18,7 @@ export default function HomePage() { +