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

This commit is contained in:
2026-06-20 19:49:44 +00:00
parent df1cac3430
commit c169267aa6

View File

@@ -1,27 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ContactSection(): React.JSX.Element {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Get in Touch"
text="Join the Tavaduri circle and experience the heritage. Ready to start your journey?"
primaryButton={{
text: "Contact Us",
href: "mailto:hello@tavaduri.com",
}}
secondaryButton={{
text: "Browse Catalog",
href: "#products",
}}
/>
</SectionErrorBoundary>
</div>
);
}