Merge version_10_1780574979157 into main #9

Merged
bender merged 1 commits from version_10_1780574979157 into main 2026-06-04 12:11:11 +00:00
2 changed files with 20 additions and 1 deletions

View File

@@ -14,7 +14,8 @@ import ContactSection from './HomePage/sections/Contact';
import HowItWorksSection from './HomePage/sections/HowItWorks';
import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';export default function HomePage(): React.JSX.Element {
import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';
import PricingSection from './HomePage/sections/Pricing';export default function HomePage(): React.JSX.Element {
return (
<>
<HomeSection />
@@ -24,6 +25,7 @@ import CaseStudiesCardsSection from './HomePage/sections/CaseStudiesCards';expor
<WhyUsSection />
<TestimonialsSection />
<SocialProofSection />
<PricingSection />
<FaqSection />
<ContactSection />
<CaseStudiesCardsSection />

View File

@@ -0,0 +1,17 @@
// Created by add_section_from_catalog (PricingHighlightedCards).
import React from 'react';
import PricingHighlightedCards from '@/components/sections/pricing/PricingHighlightedCards';
export default function PricingSection(): React.JSX.Element {
return (
<div data-webild-section="pricing" id="pricing">
<PricingHighlightedCards
title="Simple, Transparent Pricing"
plans={[{"features":["1 Artisan Loaf per week","Choice of Sourdough or Rye","Free in-store pickup"],"tag":"Basic","primaryButton":{"href":"#","text":"Subscribe Now"},"price":"$15/wk","description":"Perfect for individuals who want fresh bread weekly."},{"highlight":"Most Popular","tag":"Family","description":"Ideal for families who love fresh baked goods.","price":"$35/wk","primaryButton":{"href":"#","text":"Subscribe Now"},"features":["3 Artisan Loaves per week","Assorted Pastries box (4 pcs)","Free local delivery"]},{"features":["Custom cake orders","Large pastry platters","Dedicated catering manager"],"description":"For parties, corporate events, and special occasions.","primaryButton":{"href":"#","text":"Contact Us"},"price":"Custom","tag":"Event"}]}
tag="Pricing"
description="Choose the perfect plan for your daily bread and pastry needs."
/>
</div>
);
}