diff --git a/src/App.tsx b/src/App.tsx
index c6d2321..4e847ab 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 { Video } from "./Video.tsx";
import { Version } from "./Version.tsx";
-import { Login } from "./Login.tsx";
import "./App.css";
function App() {
@@ -44,10 +43,6 @@ const router = createBrowserRouter([
path: "/video",
element: ,
},
- {
- path: "/login",
- element: ,
- },
]);
export default App;
diff --git a/src/Login.tsx b/src/Login.tsx
deleted file mode 100644
index cddbf2e..0000000
--- a/src/Login.tsx
+++ /dev/null
@@ -1,57 +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 { Container, Row, Col, Card, Button, Form } from "react-bootstrap";
-import { atom, useAtomValue } from "jotai";
-import { useNavigate } from "react-router-dom";
-
-export function Login() {
- return (
-