Files
ecaec7c8-a0cf-498b-9040-43a…/src/pages/HomePage/sections/Contact.tsx
2026-06-10 23:01:52 +00:00

28 lines
875 B
TypeScript

// 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="Hungry?"
text="Ready to Taste the True Flavor of Hawaii? Order Your Poke Bowl Today!"
primaryButton={{
text: "Order Online Now",
href: "#",
}}
secondaryButton={{
text: "Catering Inquiry",
href: "#",
}}
/>
</SectionErrorBoundary>
</div>
);
}