Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-02-20 17:00:53 +00:00
4 changed files with 19 additions and 28 deletions

View File

@@ -28,10 +28,10 @@ export default function BlogPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "about" },
{ name: "Stats", id: "stats" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "/#about" },
{ name: "Stats", id: "/#stats" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Superkot"
bottomLeftText="The Legend, The Myth"
@@ -61,7 +61,6 @@ export default function BlogPage() {
logoText="Superkot Fan Club"
leftLink={{ text: "Privacy Policy", href: "/privacy" }}
rightLink={{ text: "Terms of Service", href: "/terms" }}
useInvertedBackground={false}
/>
</div>
</ReactLenis>

View File

@@ -31,7 +31,7 @@ export default function SitePage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: 'Home', id: 'home' },
{ name: 'Home', id: 'hero' },
{ name: 'About', id: 'about' },
{ name: 'Stats', id: 'stats' },
{ name: 'Testimonials', id: 'testimonials' },
@@ -45,14 +45,14 @@ export default function SitePage() {
<div id="hero" data-section="hero">
<HeroBillboard
title='Vitaliy "Superkot" Zalupenko'
title={'Vitaliy "Superkot" Zalupenko'}
description="The undisputed legend of friendly fire, the maestro of misplays, the man who redefined 'clutching defeat from the jaws of victory'. Prepare to witness CS2 played... uniquely."
background={{ variant: 'downward-rays-animated-grid' }}
tag="The Worst CS2 Player"
tagIcon={Flame}
buttons={[{ text: 'Witness the Fails', href: '#about' }]}
imageSrc="https://img.b2bpic.net/free-photo/angry-young-handsome-guy-wearing-green-shirt-with-glasses-head-playing-game-controller-joystick-isolated-olive-green-wall_141793-82360.jpg"
imageAlt='Vitaliy "Superkot" Zalupenko, looking confused'
imageAlt={'Vitaliy "Superkot" Zalupenko, looking confused'}
mediaAnimation="opacity"
/>
</div>
@@ -71,7 +71,7 @@ export default function SitePage() {
<div id="stats" data-section="stats">
<MetricCardTen
title='Unrivaled "Achievements"'
title={'Unrivaled "Achievements"'}
description="Behold, the groundbreaking statistics that set Superkot apart from every other player in CS2. True dedication to the bottom of the scoreboard."
metrics={[
{
@@ -111,7 +111,7 @@ export default function SitePage() {
<div id="features" data-section="features">
<FeatureCardTwentyOne
title='The "Superkot" Playbook'
title={'The "Superkot" Playbook'}
description="Unlock the secrets behind Vitaliy's legendary anti-plays. These are not tips, they are warnings."
accordionItems={[
{
@@ -149,10 +149,9 @@ export default function SitePage() {
{
id: '1',
title: '"An Absolute Menace... to Us!"',
quote: 'Playing with Superkot is a unique experience. Every flashbang he throws feels like it\'s specifically calibrated for my eyes. My K/D has never recovered.',
name: 'A Frustrated Teammate',
quote: "Playing with Superkot is a unique experience. Every flashbang he throws feels like it's specifically calibrated for my eyes. My K/D has never recovered.", name: 'A Frustrated Teammate',
role: 'CS2 Enthusiast',
imageSrc: 'https://img.b2bpic.net/free-photo/young-hispanic-man-streamer-stressed-using-computer-gaming-room_839833-35208.jpg?_wi=1',
imageSrc: 'https://img.b2bpic.net/free-photo/young-hispanic-man-streamer-stressed-using-computer-gaming-room_839833-35208.jpg',
imageAlt: 'Frustrated gamer',
},
{
@@ -165,11 +164,9 @@ export default function SitePage() {
},
{
id: '3',
title: '"I\'ve Learned to Play Blind"',
quote: 'After a few matches with Vitaliy, I can now navigate maps purely by sound. It\'s a skill I never wanted, but now possess.',
name: 'A Survivor',
title: "\"I've Learned to Play Blind\"", quote: "After a few matches with Vitaliy, I can now navigate maps purely by sound. It's a skill I never wanted, but now possess.", name: 'A Survivor',
role: 'Retired Teammate',
imageSrc: 'https://img.b2bpic.net/free-photo/young-hispanic-man-streamer-stressed-using-computer-gaming-room_839833-35208.jpg?_wi=2',
imageSrc: 'https://img.b2bpic.net/free-photo/young-hispanic-man-streamer-stressed-using-computer-gaming-room_839833-35208.jpg',
imageAlt: 'Confused gamer',
},
{
@@ -177,7 +174,7 @@ export default function SitePage() {
title: '"The True Definition of 0 Kills, 24 Deaths"',
quote: "It's not just a statistic, it's a lifestyle. He embodies the spirit of losing with unparalleled grace.", name: 'A Concerned Observer',
role: 'CS2 Commentator',
imageSrc: 'https://img.b2bpic.net/free-photo/young-hispanic-man-streamer-stressed-using-computer-gaming-room_839833-35208.jpg?_wi=3',
imageSrc: 'https://img.b2bpic.net/free-photo/young-hispanic-man-streamer-stressed-using-computer-gaming-room_839833-35208.jpg',
imageAlt: 'Exasperated gamer',
},
]}
@@ -205,8 +202,7 @@ export default function SitePage() {
{
id: '3',
title: 'Does he ever get any kills?',
content: 'Rarely. And when he does, it\'s usually by accident or a ricochet that somehow hits an enemy, much to his own surprise.',
},
content: "Rarely. And when he does, it's usually by accident or a ricochet that somehow hits an enemy, much to his own surprise."},
]}
useInvertedBackground={false}
animationType="slide-up"

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import { use, useCallback } from "react";
import { useRouter } from "next/navigation";
@@ -68,13 +68,11 @@ export default function ProductPage({ params }: ProductPageProps) {
const navbarProps = {
navItems: [{ "name": "Home", "id": "/" }, { "name": "Shop", "id": "/shop" }],
brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg", button: { text: "Cart", onClick: () => setCartOpen(true) },
};
brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg"};
const footerProps = {
logoText: "Superkot Fan Club", leftLink: { text: "Privacy Policy", href: "/privacy" },
rightLink: { text: "Terms of Service", href: "/terms" },
useInvertedBackground: false,
};
if (isLoading) {

View File

@@ -1,4 +1,4 @@
use client";
"use client";
import { useCallback } from "react";
import ReactLenis from "lenis/react";
@@ -43,13 +43,11 @@ export default function ShopPage() {
const navbarProps = {
navItems: [{ "name": "Home", "id": "/" }, { "name": "Shop", "id": "/shop" }],
brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg", button: { text: "Cart", onClick: () => setCartOpen(true) },
};
brandName: "Superkot", bottomLeftText: "The Legend, The Myth", bottomRightText: "superkot@flashbang.gg"};
const footerProps = {
logoText: "Superkot Fan Club", leftLink: { text: "Privacy Policy", href: "/privacy" },
rightLink: { text: "Terms of Service", href: "/terms" },
useInvertedBackground: false,
};
if (isLoading) {