Remove whoami, I don't know why I had that...

This commit is contained in:
James Pace 2026-05-26 15:18:10 -04:00
parent bfa963e912
commit 4408a1359a
3 changed files with 0 additions and 32 deletions

View File

@ -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: <Home />,
},
{
path: "/whoami",
element: <WhoAmI />,
},
{
path: "/version",
element: <Version />,

View File

@ -27,9 +27,6 @@ export function AppNav() {
<Nav.Link as={Link} to="/version">
Version
</Nav.Link>
<Nav.Link as={Link} to="/whoami">
WhoAmI
</Nav.Link>
<Nav.Link as={Link} to="/autonomy">
Autonomy
</Nav.Link>

View File

@ -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 (
<div>
<AppNav />
<Container>
<p> Hello World! </p>
</Container>
<Footer />
</div>
);
}