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

This commit is contained in:
2026-06-07 19:01:44 +00:00
parent d30cfcf201
commit 06e393a7cd

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 for a Slice?"
text="Experience the best pizza in San Francisco. Order online or visit us today!"
primaryButton={{
text: "Order Online",
href: "tel:+14155551234",
}}
secondaryButton={{
text: "Get Directions",
href: "https://maps.app.goo.gl/YourPizzaShopLocation",
}}
/>
</SectionErrorBoundary>
</div>
);
}