Add newsletter signup component to homepage

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 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2025-12-24 19:03:03 +01:00
parent d6eba593e3
commit bd5f92c7b3
1 changed files with 2 additions and 0 deletions

View File

@ -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() {
<VisionSection />
<WhyNowSection />
<CTASection />
<NewsletterSignup />
<Footer />
</main>
)