Compare commits
9 Commits
version_10
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 3e30d96568 | |||
|
|
f92c053d9a | ||
| 8bf9127975 | |||
|
|
e706c96446 | ||
| 56a01645f1 | |||
|
|
532ed40610 | ||
| c2646d5c11 | |||
|
|
548163a783 | ||
| 58750c9da9 |
@@ -1,21 +1,24 @@
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly; this shell only fixes render order.
|
||||
|
||||
import React from 'react';
|
||||
import HomeSection from './HomePage/sections/Home';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import ProductsSection from './HomePage/sections/Products';
|
||||
import HowItWorksSection from './HomePage/sections/HowItWorks';
|
||||
import WhyUsSection from './HomePage/sections/WhyUs';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import SocialProofSection from './HomePage/sections/SocialProof';
|
||||
import PricingSection from './HomePage/sections/Pricing';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import NewsletterSection from './HomePage/sections/Newsletter';
|
||||
import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
import HowItWorksSection from './HomePage/sections/HowItWorks';
|
||||
import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';
|
||||
import PricingSection from './HomePage/sections/Pricing';export default function HomePage(): React.JSX.Element {
|
||||
|
||||
{/* webild-stub @2026-06-04T15:44:44.030Z: remove all sections except hero and contact form */}
|
||||
|
||||
{/* webild-stub @2026-06-04T15:43:28.905Z: remove all sections except hero and contact form */}
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<HomeSection />
|
||||
@@ -27,8 +30,9 @@ import PricingSection from './HomePage/sections/Pricing';export default function
|
||||
<SocialProofSection />
|
||||
<PricingSection />
|
||||
<FaqSection />
|
||||
<NewsletterSection />
|
||||
<CaseStudiesCardsSection />
|
||||
<ContactSection />
|
||||
<CaseStudiesCardsSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
}
|
||||
18
src/pages/HomePage/sections/Newsletter.tsx
Normal file
18
src/pages/HomePage/sections/Newsletter.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
// Created by add_section_from_catalog (ContactCenter).
|
||||
|
||||
import React from 'react';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
|
||||
export default function NewsletterSection(): React.JSX.Element {
|
||||
return (
|
||||
<div data-webild-section="newsletter" id="newsletter">
|
||||
<ContactCenter
|
||||
inputPlaceholder="Enter your email address"
|
||||
title="Stay in the Loop"
|
||||
description="Join our newsletter to get the latest news, updates, and special offers delivered directly to your inbox."
|
||||
tag="Newsletter"
|
||||
buttonText="Subscribe"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user