diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index a05e05b..174ef8e 100644 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -1,102 +1,62 @@ // @TheTechMargin 2026 -"use client"; - -import { useState } from "react"; -import { useRouter } from "next/navigation"; - -export default function LoginPage() { - const router = useRouter(); - const [password, setPassword] = useState(""); - const [error, setError] = useState(""); - const [loading, setLoading] = useState(false); - - const handleSubmit = async (e: React.FormEvent) => { - e.preventDefault(); - setError(""); - setLoading(true); - - try { - const res = await fetch("/api/auth/login", { - method: "POST", - headers: { "Content-Type": "application/json" }, - body: JSON.stringify({ password }), - }); - - const data = await res.json(); - - if (!res.ok) { - setError(data.error || "Authentication failed"); - setLoading(false); - return; - } - - router.push("/"); - } catch { - setError("Network error — please try again"); - setLoading(false); - } - }; +import Link from "next/link"; +export default function RetiredPage() { return ( -
- Enter your access credential to continue +
+ The HardMode EventLens has concluded. Reach out to me for access to photos or with questions about the app.