diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index bf27cd2..5b91297 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -28,11 +28,7 @@ export default function BlogPage() { brandName="The Daily Grind" navItems={[ { name: "Home", id: "/" }, - { name: "Menu", id: "menu" }, - { name: "About", id: "about" }, - { name: "Reviews", id: "testimonials" }, - { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" }, + { name: "Shop", id: "/shop" }, ]} /> @@ -60,9 +56,8 @@ export default function BlogPage() { columns={[ { title: "Quick Links", items: [ - { label: "Menu", href: "#menu" }, - { label: "About Us", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Home", href: "/" }, + { label: "Shop", href: "/shop" }, ], }, { diff --git a/src/app/page.tsx b/src/app/page.tsx index ae48f90..7dcccf8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -46,7 +46,7 @@ export default function LandingPage() { { text: "View Menu", href: "#menu" }, { text: "Visit Us", href: "#contact" }, ]} - background={{ variant: "aurora" }} + background={{ variant: "sparkles-gradient" }} imageSrc="https://img.b2bpic.net/free-photo/close-up-barista-hands-preparing-coffee-customer-coffee-shop_93675-135317.jpg" imageAlt="Cozy coffee shop interior with barista preparing a drink" mediaAnimation="slide-up" diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index a056668..e0edf64 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -4,7 +4,7 @@ import { use, useCallback } from "react"; import { useRouter } from "next/navigation"; import ReactLenis from "lenis/react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import ProductDetailCard from "@/components/ecommerce/productDetail/ProductDetailCard"; import ProductCart from "@/components/ecommerce/cart/ProductCart"; @@ -197,9 +197,8 @@ export default function ProductPage({ params }: ProductPageProps) { columns={[ { title: "Quick Links", items: [ - { label: "Menu", href: "#menu" }, - { label: "About Us", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Home", href: "/" }, + { label: "Shop", href: "/shop" }, ], }, { diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 57c123d..a9e969a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -124,9 +124,8 @@ export default function ShopPage() { columns={[ { title: "Quick Links", items: [ - { label: "Menu", href: "#menu" }, - { label: "About Us", href: "#about" }, - { label: "Reviews", href: "#testimonials" }, + { label: "Home", href: "/" }, + { label: "Shop", href: "/shop" }, ], }, {