Merge version_3_1781993938158 into main #2

Merged
bender merged 1 commits from version_3_1781993938158 into main 2026-06-20 22:20:10 +00:00

View File

@@ -1,27 +1,59 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "contact" section.
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
import ScrollReveal from "@/components/ui/ScrollReveal";
import TextAnimation from "@/components/ui/TextAnimation";
import Button from "@/components/ui/Button";
import { Check } from "lucide-react";
import React from 'react';
import ContactCta from '@/components/sections/contact/ContactCta';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const primaryButton = {
text: "Book Now",
href: "#"
};
const secondaryButton = {
text: "Contact Concierge",
href: "mailto:concierge@grandbudapesthotel.com"
};
export default function ContactSection(): React.JSX.Element {
const ContactInline = () => {
return (
<div id="contact" data-section="contact">
<SectionErrorBoundary name="contact">
<ContactCta
tag="Reservations"
text="Ready to experience the beauty of Budapest? Book your room now or contact our concierge for personalized travel assistance."
primaryButton={{
text: "Book Now",
href: "#",
}}
secondaryButton={{
text: "Contact Concierge",
href: "mailto:concierge@grandbudapesthotel.com",
}}
/>
</SectionErrorBoundary>
<section aria-label="Contact section" className="py-20">
<div className="w-content-width mx-auto">
<ScrollReveal variant="fade">
<div className="flex flex-col items-center gap-8 md:gap-10 py-20 px-8 rounded card">
<div className="flex flex-col items-center gap-2">
<div className="px-3 py-1 mb-1 text-sm card rounded w-fit">
<p>{"Reservations"}</p>
</div>
<TextAnimation
text={"Ready to experience the beauty of Budapest? Book your room now or contact our concierge for personalized travel assistance."}
variant="slide-up"
gradientText={true}
tag="h2"
className="md:max-w-8/10 text-5xl 2xl:text-6xl leading-[1.15] font-semibold text-center text-balance"
/>
<div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3">
<Button text={primaryButton.text} href={primaryButton.href} variant="primary" />
<Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />
</div>
<div className="flex items-center gap-2 mt-4 text-sm text-accent">
<Check className="w-4 h-4" />
<span>Best Price Guarantee when booking directly</span>
</div>
</div>
</div>
</ScrollReveal>
</div>
</section>
);
};
export default function ContactSection() {
return (
<div data-webild-section="contact" id="contact">
<ContactInline />
</div>
);
}