From 1271ebce90417ea314d986bc6adaefa723bbda89 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 3 Jun 2026 14:51:24 +0000 Subject: [PATCH] Bob AI: Update about section layout with top text, left list, right --- src/pages/HomePage/sections/About.tsx | 79 +++++++++++++++++---------- 1 file changed, 49 insertions(+), 30 deletions(-) diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx index 1e09a5d..daf0054 100644 --- a/src/pages/HomePage/sections/About.tsx +++ b/src/pages/HomePage/sections/About.tsx @@ -3,39 +3,58 @@ import Tag from "@/components/ui/Tag"; import ScrollReveal from "@/components/ui/ScrollReveal"; import ImageOrVideo from "@/components/ui/ImageOrVideo"; import Button from "@/components/ui/Button"; +import { Check } from "lucide-react"; export default function AboutSection() { return ( -
-
-
- -
- -

- A Legacy of Unparalleled Hospitality -

-

- Nestled in the heart of the city, The Grand Hotel has been a beacon of luxury and comfort for over a century. Our commitment to excellence is reflected in every detail, from our meticulously designed rooms to our world-class dining experiences. -

-

- We believe that true luxury lies in the experience. Our dedicated staff is here to ensure that your stay is nothing short of extraordinary, anticipating your every need and exceeding your expectations. -

-
-
- - -
- -
-
-
-
+
+
+ +
+ +

+ A Legacy of Unparalleled Hospitality +

+

+ Nestled in the heart of the city, The Grand Hotel has been a beacon of luxury and comfort for over a century. Our commitment to excellence is reflected in every detail, from our meticulously designed rooms to our world-class dining experiences. +

-
+ + +
+ +
+
    + {[ + "Award-winning fine dining restaurants", + "World-class spa and wellness center", + "24/7 personalized concierge service", + "Breathtaking panoramic city views", + "State-of-the-art fitness facilities" + ].map((item, index) => ( +
  • +
    + +
    + {item} +
  • + ))} +
+
+
+ + +
+ +
+
+
+
+
+
); } \ No newline at end of file -- 2.49.1