From 83659f7533d10a9468667462fc685bd2728dda9f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 9 Jun 2026 13:38:50 +0000 Subject: [PATCH] Bob AI: Replaced the About section with a two-column layout featurin --- src/pages/HomePage.tsx | 4 +- src/pages/HomePage/sections/About.tsx | 86 ++++++++++++++++++++++----- 2 files changed, 73 insertions(+), 17 deletions(-) diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index e5e5aeb..0399759 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -4,7 +4,6 @@ import React from 'react'; import HomeSection from './HomePage/sections/Home'; -import AboutSection from './HomePage/sections/About'; import ExperiencesSection from './HomePage/sections/Experiences'; import RoomsSection from './HomePage/sections/Rooms'; import TestimonialsSection from './HomePage/sections/Testimonials'; @@ -12,7 +11,8 @@ import SocialProofSection from './HomePage/sections/SocialProof'; import FaqSection from './HomePage/sections/Faq'; import ContactSection from './HomePage/sections/Contact'; -export default function HomePage(): React.JSX.Element { + +import AboutSection from './HomePage/sections/About';export default function HomePage(): React.JSX.Element { return ( <> diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 48f4d1a..ef148e2 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -1,19 +1,75 @@ -// Created by add_section_from_catalog (AboutMediaOverlay). +import { motion } from "motion/react"; +import Button from "@/components/ui/Button"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import Tag from "@/components/ui/Tag"; +import { Star, BedDouble, MapPin, ConciergeBell } from "lucide-react"; -import React from 'react'; -import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; +export default function AboutSection() { + const features = [ + { + icon: , + title: "Five-Star Amenities", + description: "Enjoy our world-class spa, fitness center, and infinity pool.", + }, + { + icon: , + title: "Luxurious Suites", + description: "Rest in our premium bedding and elegantly designed rooms.", + }, + { + icon: , + title: "Prime Location", + description: "Located in the heart of the city, steps away from major attractions.", + }, + { + icon: , + title: "24/7 Concierge", + description: "Our dedicated staff is available around the clock to assist you.", + }, + ]; -export default function AboutSection(): React.JSX.Element { return ( -
- -
+
+
+
+ + {/* Left Column: Headline & Text */} + + + +

+ Experience five-star amenities, luxurious suites with premium bedding, prime location in the heart of the city, and personalized 24/7 concierge services. +

+
+
+
+ + {/* Right Column: Icon Boxes */} + + {features.map((feature, index) => ( +
+
+ {feature.icon} +
+
+

{feature.title}

+

{feature.description}

+
+
+ ))} +
+ +
+
+
); -} +} \ No newline at end of file