diff --git a/src/App.tsx b/src/App.tsx index 14b741a..ddf5cb9 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -14,7 +14,6 @@ import { Provider as JotaiProvider } from "jotai"; import { Home } from "./Home.tsx"; import { Autonomy } from "./Autonomy.tsx"; import { Version } from "./Version.tsx"; -import { WhoAmI } from "./WhoAmI.tsx"; import "./App.css"; function App() { @@ -36,10 +35,6 @@ const router = createBrowserRouter([ path: "/index.html", element: , }, - { - path: "/whoami", - element: , - }, { path: "/version", element: , diff --git a/src/AppNav.tsx b/src/AppNav.tsx index e15be33..4cdff8c 100644 --- a/src/AppNav.tsx +++ b/src/AppNav.tsx @@ -27,9 +27,6 @@ export function AppNav() { Version - - WhoAmI - Autonomy diff --git a/src/WhoAmI.tsx b/src/WhoAmI.tsx deleted file mode 100644 index 5037e1b..0000000 --- a/src/WhoAmI.tsx +++ /dev/null @@ -1,24 +0,0 @@ -// -// Copyright 2026 James Pace -// -// This Source Code Form is subject to the terms of the Mozilla Public -// License, v. 2.0. If a copy of the MPL was not distributed with this -// file, You can obtain one at https://mozilla.org/MPL/2.0/. -// -// This Source Code Form is "Incompatible With Secondary Licenses", as -// defined by the Mozilla Public License, v. 2.0. -// -import { AppNav, Footer } from "./AppNav.tsx"; -import { Container, Row, Col, Image } from "react-bootstrap"; - -export function WhoAmI() { - return ( -
- - -

Hello World!

-
-
- ); -}