diff --git a/client/src/App.tsx b/client/src/App.tsx index 4144d70..54d4ace 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -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() { - -
-
- 404: Web Shell Not Found -
-

- The web-based shell environment is currently unavailable. Please use - your native terminal for the full experience. -

- - $ exit - -
-
-
); } diff --git a/client/src/pages/docs.tsx b/client/src/pages/docs.tsx index 592a953..32a921f 100644 --- a/client/src/pages/docs.tsx +++ b/client/src/pages/docs.tsx @@ -51,29 +51,31 @@ function CommandReference() { return (
-
- - - Reference Command - -
-
- - {SSH_COMMAND} - - -
+ +
+ + + Terminal Command: + +
+
+ + {SSH_COMMAND} + + +
+
); } @@ -93,24 +95,27 @@ export default function Docs() { Documentation

- Technical architecture and connection manual. + The who, what, when, where, why

- +

When executed in your terminal, this command renders a fully interactive shell portfolio experience. Much like a digital resume or personal site, it allows you to explore my work and background - through a safe, secure, and purely text-based interface. It is - completely harmless to your system. + through a safe, secure, and purely text-based + interface.{" "} + + It is completely harmless to your system. + {" "}

- +
@@ -137,8 +142,8 @@ export default function Docs() {

User: A - passwordless, restricted user profile specifically - provisioned for public access. + passwordless, restricted user on my homeserver meant for + public access.

@@ -149,7 +154,7 @@ export default function Docs() {

Domain:{" "} Points to a web record that directs your request to my - server's public gateway. + server's public IP (gateway).

@@ -157,7 +162,7 @@ export default function Docs() { - +
01 @@ -185,7 +190,7 @@ export default function Docs() { 05

Terminate the process at any time by pressing{" "} - + Ctrl + C . @@ -194,35 +199,29 @@ export default function Docs() {

- +

- This command facilitates authenticated access to the{" "} + This command gives authenticated access to the{" "} 'portfolio'{" "} - user account on my private home infrastructure. No password is - required, as the user environment is strictly isolated. + user account on my private home server. +

+ +

+ Instead of a standard bash or zsh shell, the user session + triggers a custom-coded{" "} + + C++ executable + + . This binary utilizes{" "} + FTXUI—a + sophisticated functional terminal user interface library—to + handle real-time rendering and input.

-
-

- "The portfolio user is a specialized account with no - system-level permissions and a modified shell." -

-

- Instead of a standard bash or zsh shell, the user session - triggers a custom-coded{" "} - - C++ executable - - . This binary utilizes{" "} - FTXUI—a - sophisticated functional terminal user interface library—to - handle real-time rendering and input. -

-
- + -

- Note: Web shell is a simulated environment. Native terminal is - recommended for optimal performance. +

+ Note: Web shell is a simulated environment, and native terminal is + recommended

diff --git a/client/src/pages/not-found.tsx b/client/src/pages/not-found.tsx deleted file mode 100644 index dba9f83..0000000 --- a/client/src/pages/not-found.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { Card, CardContent } from "@/components/ui/card"; -import { AlertCircle } from "lucide-react"; - -export default function NotFound() { - return ( -
- - -
- -

404 Page Not Found

-
- -

- Did you forget to add the page to the router? -

-
-
-
- ); -}