From 4e3208190a33064d2ead006a1b133e48ab54304f Mon Sep 17 00:00:00 2001 From: James Ketrenos Date: Mon, 19 May 2025 01:07:07 -0700 Subject: [PATCH] Added rag-visualizer --- frontend/src/NewApp/BackstoryApp.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frontend/src/NewApp/BackstoryApp.tsx b/frontend/src/NewApp/BackstoryApp.tsx index 59733ca..88b2a21 100644 --- a/frontend/src/NewApp/BackstoryApp.tsx +++ b/frontend/src/NewApp/BackstoryApp.tsx @@ -34,6 +34,7 @@ import '@fontsource/roboto/300.css'; import '@fontsource/roboto/400.css'; import '@fontsource/roboto/500.css'; import '@fontsource/roboto/700.css'; +import { VectorVisualizerPage } from 'Pages/VectorVisualizerPage'; type NavigationLinkType = { name: string; @@ -45,6 +46,7 @@ type NavigationLinkType = { const DefaultNavItems : NavigationLinkType[] = [ { name: 'Chat', path: '/chat', icon: }, { name: 'Resume Builder', path: '/resume-builder', icon: }, + { name: 'RAG Visualizer', path: '/rag-visualizer', icon: }, { name: 'About', path: '/about', icon: }, // { name: 'How It Works', path: '/how-it-works', icon: }, // { name: 'For Candidates', path: '/for-candidates', icon: }, @@ -192,6 +194,7 @@ const BackstoryApp = () => { } /> } /> } /> + } /> } /> }/> {/* Candidate-specific routes */}