Skip to content

Commit 8643178

Browse files
committed
feat(routing): Add kernel terminalos route
Introduces a new route for accessing the TerminalOS kernel, allowing users to directly navigate to it via `/kernel/terminalos`.
1 parent 6265f0a commit 8643178

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/App.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ export default function App() {
2525
<Route path="/" element={<LandingPage />} />
2626
<Route path="/:lang" element={<LandingPage />} />
2727
<Route path="/terminal" element={<TerminalOS />} />
28+
<Route path="/kernel/terminalos" element={<TerminalOS />} />
2829
<Route path="/kernel/python" element={<Python />} />
2930
<Route path="/kernel/javascript" element={<JavaScript />} />
3031
<Route path="/kernel/rust" element={<Rust />} />

0 commit comments

Comments
 (0)