Switch to version 1: remove src/pages/HomePage/sections/Pricing.tsx

This commit is contained in:
2026-06-20 19:49:45 +00:00
parent 9550f8b7b2
commit 327c2d69e8

View File

@@ -1,53 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "pricing" section.
import React from 'react';
import PricingMediaCards from '@/components/sections/pricing/PricingMediaCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PricingSection(): React.JSX.Element {
return (
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingMediaCards
tag="Choose Your Experience"
title="Exceptional Value, Timeless Quality"
description="Select the package that fits your lifestyle and experience true Tavaduri quality today."
plans={[
{
tag: "Essentials",
price: "$45",
period: "monthly",
features: [
"Monthly curated selection",
"Free standard shipping",
"Access to member exclusives",
],
primaryButton: {
text: "Select Plan",
href: "#contact",
},
imageSrc: "http://img.b2bpic.net/free-photo/healthy-fruits-vegetables-hazelnuts-background-with-variety-desserts_23-2148193076.jpg",
},
{
tag: "Heritage",
price: "$89",
period: "monthly",
features: [
"All Essentials benefits",
"Priority access",
"Artisan gift box",
"Personalized recommendations",
],
primaryButton: {
text: "Select Plan",
href: "#contact",
},
imageSrc: "http://img.b2bpic.net/free-photo/carpenter-using-screwdriver-wood_23-2148643198.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}