Merge version_3_1781008844846 into main #2

Merged
bender merged 1 commits from version_3_1781008844846 into main 2026-06-09 12:42:38 +00:00

View File

@@ -1,26 +1,57 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "about" section.
/* eslint-disable */
// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import React from 'react';
import AboutText from '@/components/sections/about/AboutText';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
const primaryButton = {
text: "Our Story",
href: "#"
};
const secondaryButton = {
text: "Virtual Tour",
href: "#"
};
export default function AboutSection(): React.JSX.Element {
interface AboutTextProps {
title: string;
primaryButton?: { text: string; href: string };
secondaryButton?: { text: string; href: string };
}
const AboutInline = () => {
return (
<div id="about" data-section="about">
<SectionErrorBoundary name="about">
<AboutText
title="Grandeur Hotel: A Sanctuary of Elegance"
primaryButton={{
text: "Our Story",
href: "#",
}}
secondaryButton={{
text: "Virtual Tour",
href: "#",
}}
<section aria-label="About section" className="py-20">
<div className="w-content-width mx-auto flex flex-col gap-2 items-center">
<TextAnimation
text={"Grandeur Hotel: A Sanctuary of Elegance"}
variant="fade"
gradientText={false}
tag="h2"
className="text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance"
/>
</SectionErrorBoundary>
<ul className="mt-8 space-y-4 text-lg text-muted-foreground max-w-2xl text-center">
<li> Five-Star Amenities including world-class dining and spa</li>
<li> Luxurious Suites with premium bedding and stunning views</li>
<li> Prime Location in the heart of the city</li>
<li> Personalized 24/7 concierge services</li>
</ul>
{(primaryButton || secondaryButton) && (
<div className="flex flex-wrap gap-3 justify-center mt-2 md:mt-3">
{primaryButton && <Button text={primaryButton.text} href={primaryButton.href} variant="primary" />}
{secondaryButton && <Button text={secondaryButton.text} href={secondaryButton.href} variant="secondary" animationDelay={0.1} />}
</div>
)}
</div>
</section>
);
};
export default function AboutSection() {
return (
<div data-webild-section="about" id="about">
<AboutInline />
</div>
);
}