From 84bdd17e46bb4bc9684df2dae0c592b61deb0385 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:24:09 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 4eaca9f..29846d6 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,16 +2,15 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; import FooterBase from '@/components/sections/footer/FooterBase'; -import { Sparkles, ShieldCheck } from 'lucide-react'; +import { Sparkles } from 'lucide-react'; export default function AboutPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -60,14 +59,16 @@ export default function AboutPage() {
- Date: Sun, 22 Feb 2026 12:24:09 +0000 Subject: [PATCH 2/7] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index c787ba8..9895fc3 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -10,7 +10,6 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; From 1939926c0a4f4cb086ee98c746258c2405e9f286 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:24:09 +0000 Subject: [PATCH 3/7] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 79e6cea..7e988a8 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBase from '@/components/sections/footer/FooterBase'; @@ -11,7 +11,6 @@ export default function ContactPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -60,17 +59,12 @@ export default function ContactPage() {
- Date: Sun, 22 Feb 2026 12:24:10 +0000 Subject: [PATCH 4/7] Update src/app/page.tsx --- src/app/page.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 00ab768..93f32d8 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -15,7 +15,6 @@ export default function HomePage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -74,7 +73,6 @@ export default function HomePage() { ]} imageSrc="https://img.b2bpic.net/free-photo/classic-hookah-beautiful-colored-rays-light-smoke-concept-hookah-smoking_169016-5136.jpg" imageAlt="Elegant hookah setup with smoke in a luxurious setting" - mediaAnimation="slide-up" />
From 357a7462685dd4c92abe14bfcad31e644abc2911 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:24:10 +0000 Subject: [PATCH 5/7] Update src/app/products/page.tsx --- src/app/products/page.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx index 0379014..c48bff0 100644 --- a/src/app/products/page.tsx +++ b/src/app/products/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FooterBase from '@/components/sections/footer/FooterBase'; export default function ProductsPage() { @@ -10,7 +10,6 @@ export default function ProductsPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -59,16 +58,16 @@ export default function ProductsPage() {
- Date: Sun, 22 Feb 2026 12:24:11 +0000 Subject: [PATCH 6/7] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index e533e46..85a2646 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -9,7 +9,6 @@ export default function ProductPage({ params }: { params: { id: string } }) { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; From a8f0a7d39c069f033faa6476b19003f07e433b37 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 22 Feb 2026 12:24:11 +0000 Subject: [PATCH 7/7] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index ce6a37a..a0d6de8 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -2,7 +2,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import ProductCardOne from '@/components/sections/product/ProductCardOne'; +import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; import FooterBase from '@/components/sections/footer/FooterBase'; export default function ShopPage() { @@ -10,7 +10,6 @@ export default function ShopPage() { { name: "Home", id: "/" }, { name: "Products", id: "/products" }, { name: "About", id: "/about" }, - { name: "Blog", id: "/blog" }, { name: "Contact", id: "/contact" } ]; @@ -59,16 +58,16 @@ export default function ShopPage() {
-