From fe0f748b2f02edc20da8924f0d6cf27eddb8ce3f Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Wed, 3 Jun 2026 15:18:53 +0000 Subject: [PATCH] Bob AI: Add booking buttons to Accommodation and Experiences section --- src/pages/HomePage/sections/Accommodation.tsx | 62 ++++++----- src/pages/HomePage/sections/Experiences.tsx | 104 +++++++++--------- 2 files changed, 87 insertions(+), 79 deletions(-) diff --git a/src/pages/HomePage/sections/Accommodation.tsx b/src/pages/HomePage/sections/Accommodation.tsx index 9bba2c6..4720060 100644 --- a/src/pages/HomePage/sections/Accommodation.tsx +++ b/src/pages/HomePage/sections/Accommodation.tsx @@ -4,39 +4,43 @@ import React from 'react'; import FeaturesDetailedSteps from '@/components/sections/features/FeaturesDetailedSteps'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import Button from "@/components/ui/Button"; export default function AccommodationSection(): React.JSX.Element { return ( -
+
- + +
+
); diff --git a/src/pages/HomePage/sections/Experiences.tsx b/src/pages/HomePage/sections/Experiences.tsx index ec23092..b3860ce 100644 --- a/src/pages/HomePage/sections/Experiences.tsx +++ b/src/pages/HomePage/sections/Experiences.tsx @@ -4,60 +4,64 @@ import React from 'react'; import FeaturesRevealCardsBentoSharp from '@/components/sections/features/FeaturesRevealCardsBentoSharp'; import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +import Button from "@/components/ui/Button"; export default function ExperiencesSection(): React.JSX.Element { return ( -
+
- + +
+
); -- 2.49.1