Update src/app/admin/dashboard/page.tsx

This commit is contained in:
2026-04-21 20:24:07 +00:00
parent 33fce719d4
commit cd5e0ea4f1

View File

@@ -3,9 +3,9 @@
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 FooterCard from '@/components/sections/footer/FooterCard';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import { LayoutDashboard, Users, Trophy, Settings } from "lucide-react";
import { Twitter } from "lucide-react";
export default function AdminDashboardPage() {
return (
@@ -41,22 +41,22 @@ export default function AdminDashboardPage() {
useInvertedBackground={true}
metrics={[
{
id: "m1", value: "42", title: "Pending Applications", description: "Review new player submissions", imageSrc: "http://img.b2bpic.net/free-photo/cool-gaming-setup-indoors-still-life_23-2149829153.jpg"
id: "m1", value: "42", title: "Pending Applications", description: "Review new player submissions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CgLlXOagsJs717z6byrfTfBUdK/uploaded-1776803028642-yl74h2po.png"
},
{
id: "m2", value: "12", title: "Active Tournaments", description: "Monitor ongoing competitions", imageSrc: "http://img.b2bpic.net/free-photo/spacious-apartment-with-modern-home-office-setup-featuring-cozy-decor_482257-120763.jpg"
id: "m2", value: "12", title: "Active Tournaments", description: "Monitor ongoing competitions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CgLlXOagsJs717z6byrfTfBUdK/uploaded-1776803028642-2otekcey.png"
},
{
id: "m3", value: "99.9%", title: "System Health", description: "All servers operational", imageSrc: "http://img.b2bpic.net/free-photo/still-life-seat-gamers_23-2149746584.jpg"
id: "m3", value: "99.9%", title: "System Health", description: "All servers operational", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CgLlXOagsJs717z6byrfTfBUdK/uploaded-1776803028642-ihovjeah.png"
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[{ items: [{ label: "Dashboard", href: "/admin/dashboard" }, { label: "Settings", href: "#" }] }, { items: [{ label: "Home", href: "/" }, { label: "Community", href: "#" }] }]}
<FooterCard
logoText="APEX REGION"
socialLinks={[{ icon: Twitter, href: "https://x.com/ApexRGN", ariaLabel: "Twitter" }]}
/>
</div>
</ReactLenis>