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

This commit is contained in:
2026-06-16 08:16:06 +00:00
parent c34d779678
commit e86dca621b

View File

@@ -1,74 +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 PricingCenteredCards from '@/components/sections/pricing/PricingCenteredCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function PricingSection(): React.JSX.Element {
return (
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingCenteredCards
tag="Transparent Pricing"
title="Quality Care, Fairly Priced"
description="Clear pricing with no hidden costs for premium dental solutions."
plans={[
{
tag: "Consultation",
price: "₹499",
description: "Initial diagnosis",
features: [
"Expert review",
"Treatment plan",
],
primaryButton: {
text: "Book Now",
href: "#appointment",
},
},
{
tag: "Cleaning",
price: "₹999",
description: "Deep dental cleaning",
features: [
"Plaque removal",
"Polishing",
],
primaryButton: {
text: "Book Now",
href: "#appointment",
},
},
{
tag: "Whitening",
price: "₹2999",
description: "Brightening session",
features: [
"Instant results",
"Safety assurance",
],
primaryButton: {
text: "Book Now",
href: "#appointment",
},
},
{
tag: "Root Canal",
price: "₹3999",
description: "Endodontic care",
features: [
"Microscopic precision",
"Pain-free",
],
primaryButton: {
text: "Book Now",
href: "#appointment",
},
},
]}
/>
</SectionErrorBoundary>
</div>
);
}