3d1f483a23
* website: upgrade global-styles packages * website: move community page to CSS modules * website: replace g-container with g-grid-container * website: hide alert-banner on mobile * website: backfill missing global type styles * website: fix code font-size in download custom content * website: bump to latest patched dependencies
33 lines
813 B
JavaScript
33 lines
813 B
JavaScript
import Link from 'next/link'
|
|
import { useEffect } from 'react'
|
|
|
|
export default function NotFound() {
|
|
useEffect(() => {
|
|
if (
|
|
typeof window !== 'undefined' &&
|
|
typeof window?.analytics?.track === 'function' &&
|
|
typeof window?.document?.referrer === 'string' &&
|
|
typeof window?.location?.href === 'string'
|
|
)
|
|
window.analytics.track(window.location.href, {
|
|
category: '404 Response',
|
|
label: window.document.referrer || 'No Referrer',
|
|
})
|
|
}, [])
|
|
|
|
return (
|
|
<div id="p-404">
|
|
<h1 className="g-type-display-1">Page Not Found</h1>
|
|
<p>
|
|
We‘re sorry but we can‘t find the page you‘re looking
|
|
for.
|
|
</p>
|
|
<p>
|
|
<Link href="/">
|
|
<a>Back to Home</a>
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
)
|
|
}
|