From 2f77b4436cb1bbd413dee5bc374a6bf7b35f1a52 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 08:42:03 +0000 Subject: [PATCH 1/2] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index b1eb9da..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"; From de4be3ca66cf04d93a1597e3d5daf214732e702c Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Mar 2026 08:42:04 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index ea886ad..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";