From cf3e8fc872189d158a3dc2ff3ac4b77dbff4cd3d Mon Sep 17 00:00:00 2001 From: Sudhir Verma Date: Fri, 19 Sep 2025 15:24:17 +0530 Subject: [PATCH] Added demo (#730) * Added demo --- src/components/Navbars/DefaultNavbar/index.tsx | 10 ++++++++-- src/routes.tsx | 15 +++++++++++++++ 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/components/Navbars/DefaultNavbar/index.tsx b/src/components/Navbars/DefaultNavbar/index.tsx index e44300d8..7fdb1b59 100644 --- a/src/components/Navbars/DefaultNavbar/index.tsx +++ b/src/components/Navbars/DefaultNavbar/index.tsx @@ -326,13 +326,19 @@ function DefaultNavbar({ > { ({ TransitionProps }) => ( - + arrow_drop_up - + { renderRoutes } diff --git a/src/routes.tsx b/src/routes.tsx index 764c2f39..d859d061 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -9,6 +9,21 @@ import ProjectOfInterest from "./pages/ProjectOfInterest"; import { AddModerator } from "@mui/icons-material"; const routes = [ + { + name: "Demo", + key: "Demo", + icon: play_circle, + collapse: [ + { + name: "ART", + href: "https://art.o31e.com/" + }, + { + name: "Promtptfoo", + href: "https://promptfoo.o31e.com/" + }, + ], + }, { name: "Projects Of Interest", key: "Project-of-Interest",