From 560f6b21af336ecc55ccb3d8e91a08dc4b9c9019 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 16:49:35 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b9c362c..9138cc2 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -27,8 +27,8 @@ export default function AboutPage() { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Download App", href: "#" From baa886a51322d8d0e2dc89e610cfad233f5ed874 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 16:49:36 +0000 Subject: [PATCH 2/6] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index b5711bf..d3aec2e 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -29,9 +29,8 @@ export default function BlogPage() { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "Features", id: "features" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Pricing", id: "metrics" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Download App", href: "#cta" }} /> From abda07ad6013d384c4329c34b66e42730c4e7117 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 16:49:37 +0000 Subject: [PATCH 3/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7ff2988..cfd6a50 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -27,8 +27,8 @@ export default function ContactPage() { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "About", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Download App", href: "#" From 926ae3df07ce67cb9b7963e76fb8f839527d66d8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 16:49:37 +0000 Subject: [PATCH 4/6] Update src/app/page.tsx --- src/app/page.tsx | 23 ++++------------------- 1 file changed, 4 insertions(+), 19 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 21420c1..4d5dc8b 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,7 @@ import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import ContactSplit from '@/components/sections/contact/ContactSplit'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Smartphone, Zap, Heart, TrendingUp, Mail, Brain } from 'lucide-react'; +import { Smartphone, Zap, Heart, TrendingUp, Mail } from 'lucide-react'; export default function HomePage() { return ( @@ -29,7 +29,6 @@ export default function HomePage() { brandName="AppFlow" navItems={[ { name: "Features", id: "features" }, - { name: "Insights", id: "insights" }, { name: "Testimonials", id: "testimonials" }, { name: "Pricing", id: "metrics" } ]} @@ -83,27 +82,13 @@ export default function HomePage() { { id: 2, tag: "Analytics", title: "Real-Time Analytics", subtitle: "Track your usage patterns instantly", description: "Get detailed insights into your app usage with beautiful, interactive charts and graphs. Monitor daily activity, discover trends, and optimize how you spend your time on the app.", imageSrc: "https://img.b2bpic.net/free-vector/task-management-app_23-2148639059.jpg" - } - ]} - /> - - -
- Date: Fri, 13 Feb 2026 16:49:38 +0000 Subject: [PATCH 5/6] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index 705462d..4bc5a59 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -86,7 +86,8 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -126,7 +127,8 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> @@ -173,7 +175,8 @@ export default function ProductPage({ params }: ProductPageProps) { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Cart", onClick: () => setCartOpen(true) }} /> From aa81157493fe2a3d2e8af80998d44291216ab137 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 13 Feb 2026 16:49:39 +0000 Subject: [PATCH 6/6] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index ffc8395..0d73cf0 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -36,7 +36,8 @@ export default function ShopPage() { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} /> @@ -75,7 +76,8 @@ export default function ShopPage() { brandName="AppFlow" navItems={[ { name: "Home", id: "/" }, - { name: "Shop", id: "/shop" } + { name: "Features", id: "#features" }, + { name: "Testimonials", id: "#testimonials" } ]} button={{ text: "Cart", onClick: () => console.log("cart") }} />