From 53db53792e77976be02aff3d0203542e2515ced5 Mon Sep 17 00:00:00 2001 From: anti Date: Mon, 20 Apr 2026 19:10:09 -0400 Subject: [PATCH] =?UTF-8?q?feat(web):=20MazeNET=20scaffold=20=E2=80=94=20t?= =?UTF-8?q?okens,=20route,=20nav,=20stub=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- decnet_web/src/App.tsx | 2 + decnet_web/src/components/Layout.tsx | 1 + decnet_web/src/components/MazeNET/MazeNET.css | 29 +++ decnet_web/src/components/MazeNET/MazeNET.tsx | 15 ++ decnet_web/src/index.css | 176 ++++++++++++++---- 5 files changed, 188 insertions(+), 35 deletions(-) create mode 100644 decnet_web/src/components/MazeNET/MazeNET.css create mode 100644 decnet_web/src/components/MazeNET/MazeNET.tsx diff --git a/decnet_web/src/App.tsx b/decnet_web/src/App.tsx index 50bdefc2..fe2c8e95 100644 --- a/decnet_web/src/App.tsx +++ b/decnet_web/src/App.tsx @@ -12,6 +12,7 @@ import Bounty from './components/Bounty'; import RemoteUpdates from './components/RemoteUpdates'; import SwarmHosts from './components/SwarmHosts'; import AgentEnrollment from './components/AgentEnrollment'; +import MazeNET from './components/MazeNET/MazeNET'; function isTokenValid(token: string): boolean { try { @@ -62,6 +63,7 @@ function App() { } /> } /> + } /> } /> } /> } /> diff --git a/decnet_web/src/components/Layout.tsx b/decnet_web/src/components/Layout.tsx index 5ee38f56..f0101292 100644 --- a/decnet_web/src/components/Layout.tsx +++ b/decnet_web/src/components/Layout.tsx @@ -43,6 +43,7 @@ const Layout: React.FC = ({ children, onLogout, onSearch }) => {