feat: add Product Demo page and integrate into routing (#84)

This commit is contained in:
davida-ps
2026-02-26 16:51:06 +02:00
committed by GitHub
parent 7c0aa37a05
commit 5c5c7f539a
3 changed files with 96 additions and 1 deletions
+2
View File
@@ -7,6 +7,7 @@ import { SkillsCatalog } from './pages/SkillsCatalog';
import { SkillDetail } from './pages/SkillDetail';
import { AdvisoryDetail } from './pages/AdvisoryDetail';
import { WikiBrowser } from './pages/WikiBrowser';
import { ProductDemo } from './pages/ProductDemo';
const App: React.FC = () => {
return (
@@ -18,6 +19,7 @@ const App: React.FC = () => {
<Route path="/skills/:skillId" element={<SkillDetail />} />
<Route path="/feed" element={<FeedSetup />} />
<Route path="/feed/:advisoryId" element={<AdvisoryDetail />} />
<Route path="/demo" element={<ProductDemo />} />
<Route path="/wiki/*" element={<WikiBrowser />} />
</Routes>
</Layout>