From ddb5f8d4af6c1344593fc7ddd0055f9cbd7ee8f4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 20:04:39 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index e83af4c..4f8ca81 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -32,7 +32,8 @@ export default function BlogPage() { { name: "Services", id: "services" }, { name: "Work", id: "work" }, { name: "Testimonials", id: "testimonials" }, - { name: "Pricing", id: "pricing" } + { name: "Pricing", id: "pricing" }, + { name: "Team", id: "team" } ]} button={{ text: "Start Project", href: "#contact" }} /> @@ -65,13 +66,14 @@ export default function BlogPage() { title: "Product", items: [ { label: "Services", href: "#services" }, { label: "Pricing", href: "#pricing" }, - { label: "Work", href: "#work" } + { label: "Work", href: "#work" }, + { label: "Team", href: "#team" } ] }, { title: "Company", items: [ { label: "About", href: "#" }, - { label: "Blog", href: "#" }, + { label: "Blog", href: "/blog" }, { label: "Careers", href: "#" } ] }, -- 2.49.1 From 05883133aecf785e437b7427d3add5226cc917b4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 20:04:40 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c5feffe..9d45b90 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,6 +9,7 @@ import TestimonialCardFifteen from '@/components/sections/testimonial/Testimonia import PricingCardEight from '@/components/sections/pricing/PricingCardEight'; import ContactCenter from '@/components/sections/contact/ContactCenter'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import TeamCardOne from '@/components/sections/team/TeamCardOne'; import { Headphones, Monitor, Palette, Rocket, Shield, Smartphone, Sparkles, Star, Tablet, TrendingUp, Users, Zap } from 'lucide-react'; export default function LandingPage() { @@ -32,7 +33,8 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Work", id: "work" }, { name: "Testimonials", id: "testimonials" }, - { name: "Pricing", id: "pricing" } + { name: "Pricing", id: "pricing" }, + { name: "Team", id: "team" } ]} button={{ text: "Start Project", href: "#contact" }} /> @@ -155,6 +157,25 @@ export default function LandingPage() { /> +
+ +
+
Date: Wed, 18 Feb 2026 20:04:41 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index cb02c8a..fc3ab89 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -90,6 +90,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Work","id":"work"}, {"name":"Testimonials","id":"testimonials"}, {"name":"Pricing","id":"pricing"}, + {"name":"Team","id":"team"}, {"name":"Shop","id":"/shop"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -102,8 +103,8 @@ export default function ProductPage({ params }: ProductPageProps) { @@ -137,6 +138,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Work","id":"work"}, {"name":"Testimonials","id":"testimonials"}, {"name":"Pricing","id":"pricing"}, + {"name":"Team","id":"team"}, {"name":"Shop","id":"/shop"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -157,8 +159,8 @@ export default function ProductPage({ params }: ProductPageProps) { @@ -191,6 +193,7 @@ export default function ProductPage({ params }: ProductPageProps) { {"name":"Work","id":"work"}, {"name":"Testimonials","id":"testimonials"}, {"name":"Pricing","id":"pricing"}, + {"name":"Team","id":"team"}, {"name":"Shop","id":"/shop"} ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} @@ -236,8 +239,8 @@ export default function ProductPage({ params }: ProductPageProps) { -- 2.49.1 From 30d6435437281e30ce90949ebb65b1705414acfc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Feb 2026 20:04:42 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 531e926..158905b 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -40,6 +40,7 @@ export default function ShopPage() { {"name":"Work","id":"work"}, {"name":"Testimonials","id":"testimonials"}, {"name":"Pricing","id":"pricing"}, + {"name":"Team","id":"team"}, {"name":"Shop","id":"/shop"} ]} button={{ text: "Cart", onClick: () => console.log("cart") }} @@ -52,8 +53,8 @@ export default function ShopPage() { @@ -86,6 +87,7 @@ export default function ShopPage() { {"name":"Work","id":"work"}, {"name":"Testimonials","id":"testimonials"}, {"name":"Pricing","id":"pricing"}, + {"name":"Team","id":"team"}, {"name":"Shop","id":"/shop"} ]} button={{ text: "Cart", onClick: () => console.log("cart") }} @@ -106,8 +108,8 @@ export default function ShopPage() { -- 2.49.1