From 997ec5c7ea61142896f4d60469c6c4629fad7aba Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Tue, 23 Jun 2026 04:31:16 +0000 Subject: [PATCH] Bob AI: Added Google Maps location section with business hours and c --- src/pages/HomePage.tsx | 223 ++----------------- src/pages/HomePage/sections/Drinks.tsx | 57 +++++ src/pages/HomePage/sections/Faq.tsx | 34 +++ src/pages/HomePage/sections/Hero.tsx | 29 +++ src/pages/HomePage/sections/Location.tsx | 79 +++++++ src/pages/HomePage/sections/Reserve.tsx | 27 +++ src/pages/HomePage/sections/Story.tsx | 21 ++ src/pages/HomePage/sections/Testimonials.tsx | 42 ++++ src/pages/HomePage/sections/Wine.tsx | 57 +++++ 9 files changed, 370 insertions(+), 199 deletions(-) create mode 100644 src/pages/HomePage/sections/Drinks.tsx create mode 100644 src/pages/HomePage/sections/Faq.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Location.tsx create mode 100644 src/pages/HomePage/sections/Reserve.tsx create mode 100644 src/pages/HomePage/sections/Story.tsx create mode 100644 src/pages/HomePage/sections/Testimonials.tsx create mode 100644 src/pages/HomePage/sections/Wine.tsx diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index c68d925..01d81a6 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,210 +1,35 @@ -import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; -import ContactCta from '@/components/sections/contact/ContactCta'; -import FaqSimple from '@/components/sections/faq/FaqSimple'; -import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; -import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. -export default function HomePage() { +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import StorySection from './HomePage/sections/Story'; +import DrinksSection from './HomePage/sections/Drinks'; +import WineSection from './HomePage/sections/Wine'; +import TestimonialsSection from './HomePage/sections/Testimonials'; +import FaqSection from './HomePage/sections/Faq'; +import ReserveSection from './HomePage/sections/Reserve'; + + +import LocationSection from './HomePage/sections/Location';export default function HomePage(): React.JSX.Element { return ( - <> -
- - - -
+<> + -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ -
- - - -
+ + -
- - - -
+ ); } diff --git a/src/pages/HomePage/sections/Drinks.tsx b/src/pages/HomePage/sections/Drinks.tsx new file mode 100644 index 0000000..6c28d90 --- /dev/null +++ b/src/pages/HomePage/sections/Drinks.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "drinks" section. + +import React from 'react'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function DrinksSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..0af9e16 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,34 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "faq" section. + +import React from 'react'; +import FaqSimple from '@/components/sections/faq/FaqSimple'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function FaqSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..0865b5d --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,29 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroSplit from '@/components/sections/hero/HeroSplit'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Location.tsx b/src/pages/HomePage/sections/Location.tsx new file mode 100644 index 0000000..b5f3524 --- /dev/null +++ b/src/pages/HomePage/sections/Location.tsx @@ -0,0 +1,79 @@ +import ScrollReveal from '@/components/ui/ScrollReveal'; +import TextAnimation from '@/components/ui/TextAnimation'; +import { MapPin, Clock, Phone } from 'lucide-react'; + +export default function LocationSection() { + return ( +
+
+
+
+ +
+
+ +

+ Experience the perfect blend of premium coffee and curated wines in our sophisticated lounge. +

+
+ +
+
+
+ +
+
+

Location

+

123 Luxury Avenue
Metropolis, NY 10001

+
+
+ +
+
+ +
+
+

Hours

+

Mon - Thu: 7:00 AM - 10:00 PM
Fri - Sat: 7:00 AM - 12:00 AM
Sun: 8:00 AM - 8:00 PM

+
+
+ +
+
+ +
+
+

Contact

+

+1 (555) 123-4567
hello@chillcoffeewine.com

+
+
+
+
+
+ + +
+ +
+
+
+
+
+
+ ); +} \ No newline at end of file diff --git a/src/pages/HomePage/sections/Reserve.tsx b/src/pages/HomePage/sections/Reserve.tsx new file mode 100644 index 0000000..9546e56 --- /dev/null +++ b/src/pages/HomePage/sections/Reserve.tsx @@ -0,0 +1,27 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "reserve" section. + +import React from 'react'; +import ContactCta from '@/components/sections/contact/ContactCta'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function ReserveSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Story.tsx b/src/pages/HomePage/sections/Story.tsx new file mode 100644 index 0000000..29092a0 --- /dev/null +++ b/src/pages/HomePage/sections/Story.tsx @@ -0,0 +1,21 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "story" section. + +import React from 'react'; +import AboutMediaOverlay from '@/components/sections/about/AboutMediaOverlay'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function StorySection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Testimonials.tsx b/src/pages/HomePage/sections/Testimonials.tsx new file mode 100644 index 0000000..a5219d6 --- /dev/null +++ b/src/pages/HomePage/sections/Testimonials.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "testimonials" section. + +import React from 'react'; +import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function TestimonialsSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} diff --git a/src/pages/HomePage/sections/Wine.tsx b/src/pages/HomePage/sections/Wine.tsx new file mode 100644 index 0000000..54f21a0 --- /dev/null +++ b/src/pages/HomePage/sections/Wine.tsx @@ -0,0 +1,57 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "wine" section. + +import React from 'react'; +import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento'; +import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; + +export default function WineSection(): React.JSX.Element { + return ( +
+ + + +
+ ); +} -- 2.49.1