diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..d97da3e --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,47 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven'; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; + +export default function DashboardPage() { + return ( + + + +
+ +
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 1452aca..6e24634 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -44,6 +44,7 @@ export default function LandingPage() { description="The official internal dashboard for tracking soccer matches, player stats, and club performance." imageSrc="http://img.b2bpic.net/free-photo/soccer-player-stadium-professional_654080-928.jpg?_wi=1" mediaAnimation="slide-up" + buttons={[{ text: "View Statistics", href: "/dashboard" }]} avatars={[ { src: "http://img.b2bpic.net/free-photo/soccer-training_654080-1585.jpg", alt: "Staff profile 1" }, { src: "http://img.b2bpic.net/free-photo/soccer-match_654080-933.jpg", alt: "Staff profile 2" }, @@ -127,7 +128,7 @@ export default function LandingPage() { columns={[ { title: "Platform", items: [ - { label: "Dashboard", href: "#home" }, + { label: "Dashboard", href: "/dashboard" }, { label: "Stats", href: "#leaderboard" }, ], }, @@ -141,4 +142,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +}