import { Head } from 'fresh/runtime.ts'; import { PageProps } from 'fresh/server.ts'; import { FreshContextState } from '/lib/types.ts'; interface Data {} export default function Error404({ state }: PageProps) { return ( <> 404 - Page not found
{!state.user ? ( <> the bewCloud logo: a stylized logo

404 - Page not found

) : null}

The page you were looking for doesn't exist.

Go back home
); }