From 1b102043ae0d552fa5ea58780f4b85d29f7020a1 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 02:08:55 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 90b28e7..66bf36c 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,10 +6,9 @@ import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import Link from 'next/link'; export default function AboutPage() { - const navItems = [{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"}]; + const navItems = [{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }]; return ( Date: Sun, 22 Feb 2026 02:08:55 +0000 Subject: [PATCH 2/7] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 58 ++++++++++++++++++++----------------------- 1 file changed, 27 insertions(+), 31 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 59f8d9b..da9b28e 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -15,6 +15,7 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }]; return ( - {/* NAVBAR: Using NavbarStyleApple as required */} - + - {/* POSTS LOGIC: Preserved exactly as is */} {isLoading ? (

Loading posts...

) : ( - /* BLOG SECTION: Using BlogCardOne with generated props, except for 'posts' */ - +
+ +
)} - {/* FOOTER: Using FooterLogoReveal as required */} - +
); -- 2.49.1 From 13221229310366875fc5df0fb2fc2bfeb0851787 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 02:08:56 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 90dfd3b..abff7c7 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -4,40 +4,26 @@ import { Inter } from "next/font/google"; import "./globals.css"; const lora = Lora({ - variable: "--font-lora", - subsets: ["latin"], + variable: "--font-lora", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Moys Chinese Restaurant - Authentic Cantonese Cuisine", - description: "Experience authentic Cantonese comfort at Moys Chinese Restaurant near OSU. Famous for Peking Duck dinners and handmade egg rolls, we offer a cozy atmosphere and warm hospitality. Reserve your table or explore our menu.", - robots: { + title: "Moys Chinese Restaurant - Authentic Cantonese Cuisine", description: "Experience authentic Cantonese comfort at Moys Chinese Restaurant near OSU. Famous for Peking Duck dinners and handmade egg rolls, we offer a cozy atmosphere and warm hospitality. Reserve your table or explore our menu.", robots: { index: true, follow: true, }, openGraph: { - title: "Moys Chinese Restaurant - Authentic Cantonese Cuisine", - description: "Experience authentic Cantonese comfort at Moys Chinese Restaurant near OSU. Famous for Peking Duck dinners and handmade egg rolls, we offer a cozy atmosphere and warm hospitality. Reserve your table or explore our menu.", - url: "/", - siteName: "Moys Chinese Restaurant", - images: [ + title: "Moys Chinese Restaurant - Authentic Cantonese Cuisine", description: "Experience authentic Cantonese comfort at Moys Chinese Restaurant near OSU. Famous for Peking Duck dinners and handmade egg rolls, we offer a cozy atmosphere and warm hospitality. Reserve your table or explore our menu.", url: "/", siteName: "Moys Chinese Restaurant", images: [ { - url: "https://img.b2bpic.net/free-photo/view-delicious-dish-food_23-2150777691.jpg", - alt: "Lacquered Peking duck being sliced with warm steam", - }, + url: "https://img.b2bpic.net/free-photo/view-delicious-dish-food_23-2150777691.jpg", alt: "Lacquered Peking duck being sliced with warm steam"}, ], - type: "website", - }, + type: "website"}, twitter: { - card: "summary_large_image", - title: "Moys Chinese Restaurant - Authentic Cantonese Cuisine", - description: "Experience authentic Cantonese comfort at Moys Chinese Restaurant near OSU. Famous for Peking Duck dinners and handmade egg rolls, we offer a cozy atmosphere and warm hospitality. Reserve your table or explore our menu.", - images: ["https://img.b2bpic.net/free-photo/view-delicious-dish-food_23-2150777691.jpg"], + card: "summary_large_image", title: "Moys Chinese Restaurant - Authentic Cantonese Cuisine", description: "Experience authentic Cantonese comfort at Moys Chinese Restaurant near OSU. Famous for Peking Duck dinners and handmade egg rolls, we offer a cozy atmosphere and warm hospitality. Reserve your table or explore our menu.", images: ["https://img.b2bpic.net/free-photo/view-delicious-dish-food_23-2150777691.jpg"], }, }; -- 2.49.1 From 5678691a04476c3ca47dd82d1a2955eb6c979ac2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 02:08:57 +0000 Subject: [PATCH 4/7] Update src/app/menu/page.tsx --- src/app/menu/page.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 9c160e4..577fbef 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -6,10 +6,9 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import Link from 'next/link'; export default function MenuPage() { - const navItems = [{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"}]; + const navItems = [{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }]; return ( Date: Sun, 22 Feb 2026 02:08:58 +0000 Subject: [PATCH 5/7] Update src/app/page.tsx --- src/app/page.tsx | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cbf16b3..d24b3c1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -7,10 +7,9 @@ import TestimonialCardSixteen from '@/components/sections/testimonial/Testimonia import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import Link from 'next/link'; export default function HomePage() { - const navItems = [{"name":"Menu","id":"/menu"},{"name":"About","id":"/about"}]; + const navItems = [{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }]; return ( Date: Sun, 22 Feb 2026 02:08:58 +0000 Subject: [PATCH 6/7] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 81d65e2..7943bcf 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -1,4 +1,4 @@ -use client"; +"use client"; import { Suspense, use, useCallback } from "react"; import { useRouter } from "next/navigation"; @@ -74,6 +74,8 @@ function ProductPageContent({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "About", id: "/about" }]; + return ( -