From 24b67752b3fb600d1a5496ab214be7c7f601b51b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 02:35:39 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 116eeb1..c8547a5 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -6,10 +6,17 @@ import { useBlogPosts } from "@/hooks/useBlogPosts"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import Link from 'next/link'; export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, + ]; + return ( @@ -80,7 +79,6 @@ export default function BlogPage() { }, ]} copyrightText="© 2024 bb.q chicken — Columbus. All rights reserved." - useInvertedBackground={false} ariaLabel="Site footer with navigation and social links." /> -- 2.49.1 From 2b7d63aa90284df1f89b7a5ffb29f206739d3563 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 02:35:40 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 2bd697b..3142980 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,8 +38,7 @@ export default function LandingPage() { logoText="bb.q chicken" description="Hand-brushed sauces. Double-fried crisp. Delivered hot, fast, and flavor-packed — every time. From our signature Honey Garlic Wings to our fiery Gangnam Spice, bb.q chicken brings Korea’s most iconic fried chicken experience straight to Columbus. Whether you’re dining in, grabbing takeout, or ordering delivery — expect premium crisp, bold flavor, and next-level freshness." buttons={[{text:"Order Now",href:"#order"},{text:"View Menu",href:"#flavors"}]} - background={{variant:"blurBottom"}} - imageSrc="https://img.b2bpic.net/free-photo/chicken-fried-spicy-sauce-korean-style_1150-42875.jpg?_wi=1" + imageSrc="https://img.b2bpic.net/free-photo/chicken-fried-spicy-sauce-korean-style_1150-42875.jpg" imageAlt="Crispy, saucy Korean fried chicken with bold flavors." mediaAnimation="blur-reveal" frameStyle="card" @@ -54,7 +53,7 @@ export default function LandingPage() { Date: Sun, 22 Feb 2026 02:35:41 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index dbc63c3..ff58b5a 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -11,6 +11,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductDetail } from "@/hooks/useProductDetail"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; +import Link from 'next/link'; interface ProductPageProps { params: Promise<{ id: string }>; @@ -74,6 +75,12 @@ function ProductPageContent({ params }: ProductPageProps) { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, + ]; + if (isLoading) { return (
@@ -109,7 +116,6 @@ function ProductPageContent({ params }: ProductPageProps) { { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "TikTok", href: "#" }] } ]} copyrightText="© 2024 bb.q chicken — Columbus. All rights reserved." - useInvertedBackground={false} ariaLabel="Site footer with navigation and social links." />
@@ -135,9 +141,9 @@ function ProductPageContent({ params }: ProductPageProps) {
@@ -161,7 +167,6 @@ function ProductPageContent({ params }: ProductPageProps) { { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "TikTok", href: "#" }] } ]} copyrightText="© 2024 bb.q chicken — Columbus. All rights reserved." - useInvertedBackground={false} ariaLabel="Site footer with navigation and social links." />
@@ -187,8 +192,8 @@ function ProductPageContent({ params }: ProductPageProps) {
@@ -235,7 +240,6 @@ function ProductPageContent({ params }: ProductPageProps) { { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "TikTok", href: "#" }] } ]} copyrightText="© 2024 bb.q chicken — Columbus. All rights reserved." - useInvertedBackground={false} ariaLabel="Site footer with navigation and social links." />
-- 2.49.1 From 92c11528dfd2ca2982aa94e5da2e8dd945d4c1e9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 02:35:42 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 2696303..13ce3e1 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -10,6 +10,7 @@ import ProductCart from "@/components/ecommerce/cart/ProductCart"; import { useProductCatalog } from "@/hooks/useProductCatalog"; import { useCart } from "@/hooks/useCart"; import { useCheckout } from "@/hooks/useCheckout"; +import Link from 'next/link'; function ShopPageContent() { const { @@ -41,6 +42,12 @@ function ShopPageContent() { await checkout(getCheckoutItems(), { successUrl: currentUrl.toString() }); }, [cartItems, checkout, getCheckoutItems]); + const navItems = [ + { name: "Home", id: "/" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" }, + ]; + if (isLoading) { return ( @@ -101,9 +107,9 @@ function ShopPageContent() {
@@ -140,7 +146,6 @@ function ShopPageContent() { { title: "Follow Us", items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }, { label: "TikTok", href: "#" }] } ]} copyrightText="© 2024 bb.q chicken — Columbus. All rights reserved." - useInvertedBackground={false} ariaLabel="Site footer with navigation and social links." />
-- 2.49.1