Remove whoami, I don't know why I had that...
This commit is contained in:
parent
bfa963e912
commit
4408a1359a
|
|
@ -14,7 +14,6 @@ import { Provider as JotaiProvider } from "jotai";
|
||||||
import { Home } from "./Home.tsx";
|
import { Home } from "./Home.tsx";
|
||||||
import { Autonomy } from "./Autonomy.tsx";
|
import { Autonomy } from "./Autonomy.tsx";
|
||||||
import { Version } from "./Version.tsx";
|
import { Version } from "./Version.tsx";
|
||||||
import { WhoAmI } from "./WhoAmI.tsx";
|
|
||||||
import "./App.css";
|
import "./App.css";
|
||||||
|
|
||||||
function App() {
|
function App() {
|
||||||
|
|
@ -36,10 +35,6 @@ const router = createBrowserRouter([
|
||||||
path: "/index.html",
|
path: "/index.html",
|
||||||
element: <Home />,
|
element: <Home />,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
path: "/whoami",
|
|
||||||
element: <WhoAmI />,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
path: "/version",
|
path: "/version",
|
||||||
element: <Version />,
|
element: <Version />,
|
||||||
|
|
|
||||||
|
|
@ -27,9 +27,6 @@ export function AppNav() {
|
||||||
<Nav.Link as={Link} to="/version">
|
<Nav.Link as={Link} to="/version">
|
||||||
Version
|
Version
|
||||||
</Nav.Link>
|
</Nav.Link>
|
||||||
<Nav.Link as={Link} to="/whoami">
|
|
||||||
WhoAmI
|
|
||||||
</Nav.Link>
|
|
||||||
<Nav.Link as={Link} to="/autonomy">
|
<Nav.Link as={Link} to="/autonomy">
|
||||||
Autonomy
|
Autonomy
|
||||||
</Nav.Link>
|
</Nav.Link>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue