final content hopefully, and fixed routing

This commit is contained in:
2026-01-18 00:09:46 -06:00
parent 999fc08ffe
commit 1d369291e2
3 changed files with 57 additions and 95 deletions

View File

@@ -4,7 +4,6 @@ import { QueryClientProvider } from "@tanstack/react-query";
import { Toaster } from "@/components/ui/toaster";
import { TooltipProvider } from "@/components/ui/tooltip";
import Home from "@/pages/home";
import NotFound from "@/pages/not-found";
import Docs from "@/pages/docs";
@@ -13,21 +12,6 @@ function Router() {
<Switch>
<Route path="/" component={Home} />
<Route path="/docs" component={Docs} />
<Route path="/webshell">
<div className="min-h-screen bg-black flex flex-col items-center justify-center p-8 font-mono">
<div className="text-destructive text-4xl mb-4">
404: Web Shell Not Found
</div>
<p className="text-muted-foreground text-center max-w-md">
The web-based shell environment is currently unavailable. Please use
your native terminal for the full experience.
</p>
<a href="/" className="mt-8 text-primary hover:underline">
$ exit
</a>
</div>
</Route>
<Route component={NotFound} />
</Switch>
);
}