From ef820ccc4fa9a525e3c9acab77af374c322b57a7 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 20:21:39 +0000 Subject: [PATCH 1/5] Update src/app/admin/dashboard/page.tsx --- src/app/admin/dashboard/page.tsx | 77 ++++++++++++++++---------------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/src/app/admin/dashboard/page.tsx b/src/app/admin/dashboard/page.tsx index 93b5335..6f92466 100644 --- a/src/app/admin/dashboard/page.tsx +++ b/src/app/admin/dashboard/page.tsx @@ -3,9 +3,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import { ShieldCheck, Users, BarChart3, Settings } from "lucide-react"; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; +import { LayoutDashboard, Users, Trophy, Settings } from "lucide-react"; -export default function AdminDashboard() { +export default function AdminDashboardPage() { return ( - - -
-
-

Administrator Dashboard

-

Secure system management and oversight.

-
+ -
- {[ - { title: "User Management", icon: Users }, - { title: "Access Controls", icon: ShieldCheck }, - { title: "System Analytics", icon: BarChart3 }, - { title: "Configuration", icon: Settings } - ].map((item, i) => ( -
- -

{item.title}

-
- ))} -
+
+ +
-
-

System Overview

-
-

Authorization required for all administrative modifications.

- -
-
-
+
); -- 2.49.1 From ea131834739c10f49a875b6700907a4c01958067 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 20:21:39 +0000 Subject: [PATCH 2/5] Update src/app/admin/page.tsx --- src/app/admin/page.tsx | 52 ++++++++++++------------------------------ 1 file changed, 14 insertions(+), 38 deletions(-) diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index c054e5c..2cd6303 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -26,17 +26,13 @@ export default function LandingPage() { @@ -51,12 +47,7 @@ export default function LandingPage() { description="Admin overview." metrics={[ { - id: "p1", - value: "99.9%", - title: "Uptime", - description: "Server stability", - imageSrc: "http://img.b2bpic.net/free-photo/futuristic-background-with-glowing-abstract-neon-light-patterns-great-cosmic-background_181624-34438.jpg", - }, + id: "p1", value: "99.9%", title: "Uptime", description: "Server stability", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-background-with-glowing-abstract-neon-light-patterns-great-cosmic-background_181624-34438.jpg"}, ]} /> @@ -70,19 +61,12 @@ export default function LandingPage() { description="Manage user plans." plans={[ { - id: "pl1", - price: "$0", - name: "Standard", - buttons: [ + id: "pl1", price: "$0", name: "Standard", buttons: [ { - text: "Manage", - href: "#", - }, + text: "Manage", href: "#"}, ], features: [ - "Basic Stats", - "Standard Support", - ], + "Basic Stats", "Standard Support"], }, ]} /> @@ -94,25 +78,17 @@ export default function LandingPage() { { items: [ { - label: "About", - href: "#", - }, + label: "About", href: "#"}, { - label: "Privacy Policy", - href: "#", - }, + label: "Privacy Policy", href: "#"}, ], }, { items: [ { - label: "Terms of Service", - href: "#", - }, + label: "Terms of Service", href: "#"}, { - label: "Community", - href: "#", - }, + label: "Community", href: "#"}, ], }, ]} @@ -122,4 +98,4 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 01e837369d1efc78c8130dc30191e37785447f2d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 20:21:40 +0000 Subject: [PATCH 3/5] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 89 ++++++++++++++++++++++---------------- 1 file changed, 51 insertions(+), 38 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index ec13957..5c09679 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -4,51 +4,64 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; export default function DashboardPage() { return ( - -
-

User Dashboard

-
-
-

Profile Management

-

Manage your account settings, preferences and security.

+ + +
+

User Dashboard

+
+
+ Profile +

Player Profile

+

Manage your account details and social links.

+
+
+

Settings

+

Configure your preferences, notification settings, and privacy options.

+
+ + +
+
-
-

Your Content

-

Access your matches and performance stats.

-
-
-
- + + +
); -} \ No newline at end of file +} -- 2.49.1 From a36373e8e8b00c358be09ed9981fcfb2e2cec6ef Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 20:21:40 +0000 Subject: [PATCH 4/5] Update src/app/page.tsx --- src/app/page.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 84df876..33a95aa 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,12 +3,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import SplitAbout from '@/components/sections/about/SplitAbout'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; export default function LandingPage() { return ( @@ -19,8 +19,8 @@ export default function LandingPage() { contentWidth="smallMedium" sizing="mediumSizeLargeTitles" background="none" - cardStyle="subtle-shadow" - primaryButtonStyle="shadow" + cardStyle="glass-depth" + primaryButtonStyle="primary-glow" secondaryButtonStyle="glass" headingFontWeight="normal" > @@ -79,19 +79,19 @@ export default function LandingPage() {
-
-- 2.49.1 From d9cc8ea39b1fe296813e311509182458142b9107 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 20:21:41 +0000 Subject: [PATCH 5/5] Update src/app/styles/variables.css --- src/app/styles/variables.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index c6ba565..0d067a1 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #0a0a0a; - --card: #1a1a1a; + --background: #000000; + --card: #0c0c0c; --foreground: #ffffff; - --primary-cta: #c89bff; + --primary-cta: #106EFB; --primary-cta-text: #ffffff; - --secondary-cta: #1a1a1a; + --secondary-cta: #000000; --secondary-cta-text: #e63946; - --accent: #8b5cf6; - --background-accent: #5b21b6; + --accent: #535353; + --background-accent: #106EFB; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1