From 1e6909977d65efcd84eb4fe64527890d00f34564 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 17:06:50 +0000 Subject: [PATCH 1/4] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index a44f642..a5b28ce 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -30,8 +30,11 @@ export default function BlogPage() { { name: "Home", id: "/" }, { name: "About", id: "/#about" }, { name: "Stats", id: "/#stats" }, + { name: "Trust", id: "/#social-proof" }, { name: "Testimonials", id: "/#testimonials" }, { name: "Contact", id: "/#contact" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" } ]} brandName="Superkot" bottomLeftText="The Legend, The Myth" -- 2.49.1 From b4ee464f0fa05b466dbc1e207f077fd699805a5e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 17:06:51 +0000 Subject: [PATCH 2/4] Update src/app/page.tsx --- src/app/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index 8efc8f1..c6fb654 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -10,6 +10,7 @@ import HeroBillboard from '@/components/sections/hero/HeroBillboard'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardTen from '@/components/sections/metrics/MetricCardTen'; import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; import ContactFaq from '@/components/sections/contact/ContactFaq'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; @@ -34,8 +35,11 @@ export default function SitePage() { { name: 'Home', id: 'hero' }, { name: 'About', id: 'about' }, { name: 'Stats', id: 'stats' }, + { name: 'Trust', id: 'social-proof' }, { name: 'Testimonials', id: 'testimonials' }, { name: 'Contact', id: 'contact' }, + { name: 'Blog', id: '/blog' }, + { name: 'Shop', id: '/shop' } ]} brandName="Superkot" bottomLeftText="The Legend, The Myth" @@ -140,6 +144,16 @@ export default function SitePage() { /> +
+ +
+
Date: Fri, 20 Feb 2026 17:06:51 +0000 Subject: [PATCH 3/4] Update src/app/shop/[id]/page.tsx --- src/app/shop/[id]/page.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/app/shop/[id]/page.tsx b/src/app/shop/[id]/page.tsx index e25b742..440a742 100644 --- a/src/app/shop/[id]/page.tsx +++ b/src/app/shop/[id]/page.tsx @@ -67,7 +67,16 @@ export default function ProductPage({ params }: ProductPageProps) { }, [cartItems, checkout, getCheckoutItems]); const navbarProps = { - navItems: [{ "name": "Home", "id": "/" }, { "name": "Shop", "id": "/shop" }], + navItems: [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Stats", id: "/#stats" }, + { name: "Trust", id: "/#social-proof" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" } + ], brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg"}; const footerProps = { -- 2.49.1 From 186c31208af3a67701607680d7abc0c42b59686c Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Feb 2026 17:06:52 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index fe73585..fdaa733 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -42,7 +42,16 @@ export default function ShopPage() { }, [cartItems, checkout, getCheckoutItems]); const navbarProps = { - navItems: [{ "name": "Home", "id": "/" }, { "name": "Shop", "id": "/shop" }], + navItems: [ + { name: "Home", id: "/" }, + { name: "About", id: "/#about" }, + { name: "Stats", id: "/#stats" }, + { name: "Trust", id: "/#social-proof" }, + { name: "Testimonials", id: "/#testimonials" }, + { name: "Contact", id: "/#contact" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" } + ], brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg"}; const footerProps = { -- 2.49.1