import "@/styles/ErrorPage.css"; import Icon from "@/components/Icon"; import { Link } from "wouter"; export function P404() { return (

404

Page Not Found

The page you're looking for doesn't exist or has been moved.

); } export function ErrorPage({ msg }: { msg: string }) { return (

{msg}

Oops!

Something went wrong

{msg}

); }