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

This commit is contained in:
2026-06-07 20:52:55 +00:00
parent 5aa88dabc7
commit fba5e53632

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 to Indulge?"
text="Taste the difference of freshly baked quality. Place your order or visit us today for a delightful experience!"
primaryButton={{
text: "Order Online Now",
href: "#",
}}
secondaryButton={{
text: "Find Our Location",
href: "#",
}}
/>
</SectionErrorBoundary>
</div>
);
}