28 lines
875 B
TypeScript
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>
|
|
);
|
|
}
|