feat: update robot interaction page

This page is now fancier, shows messages streaming from the Control Backend.

ref: N25B-164
This commit is contained in:
Twirre Meulenbelt
2025-10-08 15:56:34 +02:00
parent 23cef5206d
commit d8ed8df982
5 changed files with 97 additions and 80 deletions

View File

@@ -2,6 +2,7 @@ import { Routes, Route, Link } from 'react-router'
import './App.css'
import TemplatePage from './pages/TemplatePage/Template.tsx'
import Home from './pages/Home/Home.tsx'
import Robot from './pages/Robot/Robot.tsx';
function App(){
return (
@@ -13,6 +14,7 @@ function App(){
<Routes>
<Route path="/" element={<Home />} />
<Route path="/template" element={<TemplatePage />} />
<Route path="/robot" element={<Robot />} />
</Routes>
</main>
</div>