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:
parent
d6eba593e3
commit
bd5f92c7b3
|
|
@ -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>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue