Switch to version 2: added src/pages/HomePage/sections/Contact.tsx

This commit is contained in:
2026-06-07 19:02:07 +00:00
parent ca80d1ae0e
commit 8d2c771ecd

View File

@@ -0,0 +1,27 @@
// 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>
);
}