From 9d98adcb00bb8b9bdd42a1af6aa3fdba02ff1ab9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 08:40:32 +0000 Subject: [PATCH 1/2] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 93bb32c..da2d6e9 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -1,9 +1,9 @@ "use client"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import MenuSection from '@/components/sections/MenuSection'; -import AboutRestaurantSection from '@/components/sections/AboutRestaurantSection'; -import ContactSection from '@/components/sections/ContactSection'; -import FooterSection from '@/components/sections/FooterSection'; +import MenuSection from '@/components/sections/MenuSection/MenuSection'; +import AboutRestaurantSection from '@/components/sections/AboutRestaurantSection/AboutRestaurantSection'; +import ContactSection from '@/components/sections/ContactSection/ContactSection'; +import FooterSection from '@/components/sections/FooterSection/FooterSection'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Facebook, Instagram, Twitter } from "lucide-react"; @@ -75,7 +75,7 @@ export default function MenuPage() { Date: Wed, 25 Mar 2026 08:40:32 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7e00dee..635c80e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,12 +1,12 @@ "use client"; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import HeroSection from '@/components/sections/HeroSection'; -import AboutRestaurantSection from '@/components/sections/AboutRestaurantSection'; -import GalleryPreviewSection from '@/components/sections/GalleryPreviewSection'; -import TestimonialsSection from '@/components/sections/TestimonialsSection'; -import BookTableSection from '@/components/sections/BookTableSection'; -import OpeningHoursSection from '@/components/sections/OpeningHoursSection'; -import FooterSection from '@/components/sections/FooterSection'; +import HeroSection from '@/components/sections/HeroSection/HeroSection'; +import AboutRestaurantSection from '@/components/sections/AboutRestaurantSection/AboutRestaurantSection'; +import GalleryPreviewSection from '@/components/sections/GalleryPreviewSection/GalleryPreviewSection'; +import TestimonialsSection from '@/components/sections/TestimonialsSection/TestimonialsSection'; +import BookTableSection from '@/components/sections/BookTableSection/BookTableSection'; +import OpeningHoursSection from '@/components/sections/OpeningHoursSection/OpeningHoursSection'; +import FooterSection from '@/components/sections/FooterSection/FooterSection'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Facebook, Instagram, Twitter } from "lucide-react"; @@ -57,7 +57,7 @@ export default function HomePage() {