diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 9b140ef..58f3c7b 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -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 ( -
- - +
+ - + +
    +
  • • Five-Star Amenities including world-class dining and spa
  • +
  • • Luxurious Suites with premium bedding and stunning views
  • +
  • • Prime Location in the heart of the city
  • +
  • • Personalized 24/7 concierge services
  • +
+ + {(primaryButton || secondaryButton) && ( +
+ {primaryButton &&
+ )}
+ + ); +}; + +export default function AboutSection() { + return ( +
+ +
); }