8 Commits

Author SHA1 Message Date
186c31208a Update src/app/shop/page.tsx 2026-02-20 17:06:52 +00:00
7c814f2afa Update src/app/shop/[id]/page.tsx 2026-02-20 17:06:51 +00:00
b4ee464f0f Update src/app/page.tsx 2026-02-20 17:06:51 +00:00
1e6909977d Update src/app/blog/page.tsx 2026-02-20 17:06:50 +00:00
3792af72a4 Merge version_1 into main
Merge version_1 into main
2026-02-20 17:04:35 +00:00
c650dcf167 Merge version_1 into main
Merge version_1 into main
2026-02-20 17:03:50 +00:00
2bdd267fbc Merge version_1 into main
Merge version_1 into main
2026-02-20 17:00:52 +00:00
3c05fe998b Merge version_1 into main
Merge version_1 into main
2026-02-20 16:58:14 +00:00
4 changed files with 37 additions and 2 deletions

View File

@@ -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"

View File

@@ -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() {
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Trusted by those who still have their sanity"
description="Even amidst the chaos, some brave companies have (regrettably) partnered with Superkot."
names={['Flashbang.gg', 'Accidental Wins Inc.', 'Blind Spot Co.', 'Esports Therapy League']}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="What His Teammates (and Enemies) Say"

View File

@@ -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 = {

View File

@@ -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 = {