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." /> 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() { ; @@ -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." />
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." />