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

This commit is contained in:
2026-06-16 08:16:03 +00:00
parent 1ddb5fa0f7
commit 9bade0033c

View File

@@ -1,24 +0,0 @@
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function CtaFinalSection(): React.JSX.Element {
return (
<div id="cta-final" data-webild-section="cta-final">
<SectionErrorBoundary name="cta-final">
<ContactCta
tag="Your Perfect Smile Is Just One Appointment Away"
text="Book your consultation today and experience world-class dental care."
primaryButton={{
text: "Book Appointment",
href: "#appointment",
}}
secondaryButton={{
text: "Call Now",
href: "tel:+910000000000",
}}
/>
</SectionErrorBoundary>
</div>
);
}