import { IS_PRIVATE_MANIFOLD } from 'common/envs/constants'
import { Page } from 'web/components/page'
import { Title } from 'web/components/title'
export default function Custom404() {
if (IS_PRIVATE_MANIFOLD) {
// Since private Manifolds are client-side rendered, they'll blink the 404
// So we just show a blank page here:
return
}
return (
Nothing exists at this location.
If you didn't expect this, let us know on Discord!