From e3995ff443dbe60da17164d04cc35dcc095ea212 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 23:59:48 +0000 Subject: [PATCH 1/2] Add src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 src/app/dashboard/page.tsx diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..26f9e91 --- /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 NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +export default function DashboardPage() { + return ( + + + +
+
+

Dashboard Interface

+

Welcome to the JARVIS operations center. Monitor your agent swarm and orchestration metrics here.

+
+
+
+
+ ); +} -- 2.49.1 From ea6d147a8f73471d46e3ef2cba0b9def7f18619f Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 15 Apr 2026 23:59:49 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 7aaec37..af8995e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -38,10 +38,11 @@ export default function LandingPage() { { name: "Workflow", id: "workflow" }, { name: "Testimonials", id: "testimonials" }, { name: "FAQ", id: "faq" }, - { name: "Contact", id: "contact" } + { name: "Contact", id: "contact" }, + { name: "Dashboard", id: "dashboard" } ]} brandName="JARVIS" - button={{ text: "Enter Dashboard", href: "/" }} + button={{ text: "Enter Dashboard", href: "/dashboard" }} /> @@ -57,7 +58,7 @@ export default function LandingPage() { { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=3ztxi1", alt: "project manager professional headshot" }, { src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=r5wxeh", alt: "systems engineer professional headshot" } ]} - buttons={[{ text: "Enter Dashboard", href: "/" }]} + buttons={[{ text: "Enter Dashboard", href: "/dashboard" }]} marqueeItems={[ { type: "text", text: "Latency: 12ms" }, { type: "text", text: "Uptime: 99.99%" }, -- 2.49.1