From 5a5b69a20426538bd0e6f3eacc16855e2e09e5cd Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 1 Apr 2026 01:40:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5185d5f..50222be 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Playfair_Display, Noto_Serif_TC, Inter, Noto_Sans_TC } from "next/font/ export const metadata: Metadata = { - title: 'Borgo C - Home-Style Fusion Cuisine in Lei King Wan', - description: 'MSG-free home-style Chinese-Western fusion cuisine with artistic desserts in the heart of Lei King Wan. Reserve your table at Borgo C.', + title: 'Home', + description: 'Welcome to our website.', openGraph: { "title": "Borgo C - Official Restaurant", "description": "Home-style fusion cuisine in Lei King Wan.", -- 2.49.1 From cde19368a04981c8bfdc274d3ecedc75aabfc49b Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 1 Apr 2026 01:40:18 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 166 ++++++++++++++++------------------------------- 1 file changed, 55 insertions(+), 111 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 229d895..17fb980 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,122 +1,66 @@ -"use client"; - import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactCTA from '@/components/sections/contact/ContactCTA'; import FooterBase from '@/components/sections/footer/FooterBase'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -export default function HomePage() { +export default function Page() { + const navItems = [{ name: "Home", id: "/" }]; return ( - - - -
- -
-
- -
-
- -
-
- -
-
- -
- -
+ + +
+ +
+
+ +
+
+ +
+
+ +
+
+ +
+
); -} +} \ No newline at end of file -- 2.49.1