Merge version_11_1780587441025 into main #10

Merged
bender merged 1 commits from version_11_1780587441025 into main 2026-06-04 15:39:12 +00:00
2 changed files with 21 additions and 1 deletions

View File

@@ -15,7 +15,8 @@ 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 {
import PricingSection from './HomePage/sections/Pricing';
import NewsletterSection from './HomePage/sections/Newsletter';export default function HomePage(): React.JSX.Element {
return (
<>
<HomeSection />
@@ -27,6 +28,7 @@ import PricingSection from './HomePage/sections/Pricing';export default function
<SocialProofSection />
<PricingSection />
<FaqSection />
<NewsletterSection />
<ContactSection />
<CaseStudiesCardsSection />
</>

View 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>
);
}