From c09edd0402f3db291f5c4db1a086eab60eaa08b4 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 9 Jun 2026 13:33:20 +0000 Subject: [PATCH] Bob AI: Replaced About section with AboutMediaOverlay --- src/pages/HomePage/sections/About.tsx | 81 ++++----------------------- 1 file changed, 12 insertions(+), 69 deletions(-) diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index ae23900..48f4d1a 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -1,76 +1,19 @@ -/* 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 ImageOrVideo from "@/components/ui/ImageOrVideo"; -import Tag from "@/components/ui/Tag"; -import Card from "@/components/ui/Card"; +// Created by add_section_from_catalog (AboutMediaOverlay). -const primaryButton = { - text: "Our Story", - href: "#" -}; -const secondaryButton = { - text: "Virtual Tour", - href: "#" -}; +import React from 'react'; +import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; -interface AboutTextProps { - title: string; - primaryButton?: { text: string; href: string }; - secondaryButton?: { text: string; href: string }; -} - -const AboutInline = () => { - return ( -
-
-
- - - {(primaryButton || secondaryButton) && ( -
- {primaryButton &&
- )} -
-
-
- -
    -
  • 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
  • -
-
- - -
- -
- -
-
-
-
- ); -}; - -export default function AboutSection() { +export default function AboutSection(): React.JSX.Element { return (
- +
); }