From b8161c5cb9488a48a8cf48d69066b6940bab1674 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:26:53 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6cb05ef..30a881d 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -1,7 +1,6 @@ "use client"; import React from 'react'; -import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { useBlogPosts } from "@/hooks/useBlogPosts"; @@ -18,14 +17,15 @@ export default function BlogPage() { const { posts, isLoading } = useBlogPosts(); const navItems = [ - { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, - { name: "About", id: "/#about" }, - { name: "Features", id: "/#features" }, - { name: "Testimonials", id: "/#testimonials" }, - { name: "FAQ", id: "/#faq" }, - { name: "Contact", id: "/#contact" }, - ]; + { name: 'Home', id: '/' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Features', id: '/#features' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'FAQ', id: '/#faq' }, + { name: 'Contact', id: '/#contact' }, + ]; return (
Date: Mon, 23 Feb 2026 12:26:54 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index f938476..9484476 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,6 @@ "use client"; import React from 'react'; -import Link from 'next/link'; import { Award, CheckCircle, Heart, HelpCircle, Mail, MessageSquare, Sparkles } from 'lucide-react'; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider'; @@ -17,13 +16,14 @@ import FooterMedia from '@/components/sections/footer/FooterMedia'; export default function LandingPage() { const navItems = [ + { name: 'Home', id: '/' }, { name: 'Shop', id: '/shop' }, - { name: 'About', id: '#about' }, - { name: 'Features', id: '#features' }, - { name: 'Testimonials', id: '#testimonials' }, - { name: 'FAQ', id: '#faq' }, - { name: 'Contact', id: '#contact' }, { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Features', id: '/#features' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'FAQ', id: '/#faq' }, + { name: 'Contact', id: '/#contact' }, ]; return ( @@ -179,7 +179,7 @@ export default function LandingPage() { textBoxClassName="text-foreground" textBoxTitleClassName="text-foreground" textBoxDescriptionClassName="text-foreground" - tagClassName="text-accent" + textBoxTagClassName="text-accent" quoteCardClassName="bg-background/80 shadow-soft-shadow" testimonialTitleClassName="text-foreground" quoteClassName="text-foreground/90" @@ -212,7 +212,7 @@ export default function LandingPage() { textBoxClassName="text-foreground" textBoxTitleClassName="text-foreground" textBoxDescriptionClassName="text-foreground" - tagClassName="text-accent" + textBoxTagClassName="text-accent" faqsContainerClassName="bg-card shadow-soft-shadow" accordionTitleClassName="text-foreground" accordionIconClassName="text-primary-cta" -- 2.49.1 From f960434dd32ad084aa8290175807223e403ee118 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:26:55 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index cf2d7af..92bc813 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -2,7 +2,6 @@ import { Suspense, use, useCallback } from "react"; import { useRouter } from "next/navigation"; -import Link from 'next/link'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FooterMedia from '@/components/sections/footer/FooterMedia'; @@ -17,15 +16,15 @@ interface ProductPageProps { } const navItems = [ - { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" }, - { name: "About", id: "/#about" }, - { name: "Features", id: "/#features" }, - { name: "Testimonials", id: "/#testimonials" }, - { name: "FAQ", id: "/#faq" }, - { name: "Contact", id: "/#contact" }, - { name: "Blog", id: "/blog" }, -]; + { name: 'Home', id: '/' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Features', id: '/#features' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'FAQ', id: '/#faq' }, + { name: 'Contact', id: '/#contact' }, + ]; export default function ProductPage({ params }: ProductPageProps) { -- 2.49.1 From a6d0e94b2f58b83554fff10565fa341e1f8f81ef Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Feb 2026 12:26:56 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 75bc78e..57947f6 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -2,21 +2,21 @@ import { Suspense } from "react"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import Link from 'next/link'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import FooterMedia from '@/components/sections/footer/FooterMedia'; import ProductCatalog from "@/components/ecommerce/productCatalog/ProductCatalog"; import { useProductCatalog } from "@/hooks/useProductCatalog"; const navItems = [ - { name: "Home", id: "/" }, - { name: "About", id: "/#about" }, - { name: "Features", id: "/#features" }, - { name: "Testimonials", id: "/#testimonials" }, - { name: "FAQ", id: "/#faq" }, - { name: "Contact", id: "/#contact" }, - { name: "Blog", id: "/blog" }, -]; + { name: 'Home', id: '/' }, + { name: 'Shop', id: '/shop' }, + { name: 'Blog', id: '/blog' }, + { name: 'About', id: '/#about' }, + { name: 'Features', id: '/#features' }, + { name: 'Testimonials', id: '/#testimonials' }, + { name: 'FAQ', id: '/#faq' }, + { name: 'Contact', id: '/#contact' }, + ]; function ShopPageContent() { const { -- 2.49.1