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