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

This commit is contained in:
2026-06-20 22:56:29 +00:00
parent 5f6044379e
commit 01e22de126

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="Ready to Start?"
text="Get a free estimate for your next project."
primaryButton={{
text: "Contact Us",
href: "#contact",
}}
secondaryButton={{
text: "Call Now",
href: "#",
}}
/>
</SectionErrorBoundary>
</div>
);
}