import type { Metadata } from "next"; import { Logo } from "./components/ui/Logo"; import { ButtonLink } from "./components/ui/ButtonLink"; export const metadata: Metadata = { title: "Lost on the climb", description: "This summit doesn't exist yet.", }; export default function NotFound() { return (
{/* Glowing orb */}

404

LOST ON
THE CLIMB.

This summit doesn't exist yet. The page you're looking for may have drifted off the map.

BACK TO BASE CAMP EXPLORE OUR GAMES
); }