From 86e2af1b6e9c09cd807fe65d9a9fc8a78e4473bb Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 8 May 2026 19:39:03 +0000 Subject: [PATCH 1/2] Bob AI: fix build error in src/App.tsx --- src/App.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 0ebe3f2..703a161 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -68,7 +68,6 @@ export default function LandingPage() { > @@ -123,11 +122,11 @@ export default function LandingPage() { title="What Our Guests Say" description="Hear from those who have experienced the exceptional service and luxurious comfort of The Grandeur Hotel." testimonials={[ - { id: "1", name: "Sarah J.", role: "CEO, Tech Solutions", company: "Tech Solutions", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=34iq41" }, - { id: "2", name: "Michael C.", role: "Travel Blogger", company: "Wanderlust Diaries", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=o6cw06" }, - { id: "3", name: "Emily R.", role: "Luxury Consultant", company: "Elite Lifestyles", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=gk4byp" }, - { id: "4", name: "David K.", role: "Film Director", company: "Cinematic Arts", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=r6ybjf" }, - { id: "5", name: "Jessica L.", role: "Fashion Designer", company: "Haute Couture", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=y8gd9z" } + { name: "Sarah J.", role: "CEO, Tech Solutions", company: "Tech Solutions", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=34iq41" }, + { name: "Michael C.", role: "Travel Blogger", company: "Wanderlust Diaries", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=o6cw06" }, + { name: "Emily R.", role: "Luxury Consultant", company: "Elite Lifestyles", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=gk4byp" }, + { name: "David K.", role: "Film Director", company: "Cinematic Arts", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=r6ybjf" }, + { name: "Jessica L.", role: "Fashion Designer", company: "Haute Couture", rating: 5, imageSrc: "https://storage.googleapis.com/webild/default/no-image.jpg?id=y8gd9z" } ]} /> -- 2.49.1 From fd498033b3f9749cf9e5b3f74d18ca84eeaf4eff Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 8 May 2026 19:39:21 +0000 Subject: [PATCH 2/2] Update src/App.tsx --- src/App.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 703a161..774b6bc 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,6 +1,6 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import { ThemeProvider } from "@/providers/theme-provider/ThemeProvider"; import NavbarDropdown from "@/components/ui/NavbarDropdown"; import HeroSplitMediaGrid from "@/components/sections/hero/HeroSplitMediaGrid"; import AboutText from "@/components/sections/about/AboutText"; @@ -68,6 +68,7 @@ export default function LandingPage() { > -- 2.49.1