Files
574a3b0a-41a8-4e46-b5d4-e7f…/src/pages/HomePage/sections/Contact.tsx
2026-06-03 13:41:48 +00:00

28 lines
954 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="Connect With Us"
text="Ready to plan your perfect getaway? Contact us today for reservations or inquiries about your luxurious stay."
primaryButton={{
text: "Book Now",
href: "tel:+1234567890",
}}
secondaryButton={{
text: "Email Us",
href: "mailto:reservations@grandhotel.com",
}}
/>
</SectionErrorBoundary>
</div>
);
}