feat: added a twist

This commit is contained in:
2026-04-01 00:53:55 +02:00
parent 0b7deee59e
commit b40c6436cd
76 changed files with 15121 additions and 64 deletions

18
frontend/src/App.tsx Normal file
View File

@@ -0,0 +1,18 @@
import { Routes, Route } from "react-router-dom";
import AppShell from "./components/shared/AppShell";
import DashboardView from "./routes/DashboardView";
import EditorView from "./routes/EditorView";
import GraphView from "./routes/GraphView";
export default function App() {
return (
<AppShell>
<Routes>
<Route path="/" element={<DashboardView />} />
<Route path="/editor/new" element={<EditorView />} />
<Route path="/editor/:name" element={<EditorView />} />
<Route path="/graph" element={<GraphView />} />
</Routes>
</AppShell>
);
}