-
Notifications
You must be signed in to change notification settings - Fork 14
/
not-found.js
34 lines (33 loc) · 1.04 KB
/
not-found.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import '@/styles/pages/not-found.scss';
import Link from 'next/link';
/**
* 404 not found page. This is a built-in Next.js function.
* @see https://nextjs.org/docs/app/api-reference/functions/not-found
* @returns {JSX.Element}
*/
export default function notFound() {
return (
<>
<section className="not-found-container">
<div className="not-found-content">
<h1>Oops!</h1>
<h4>404 Page Not Found</h4>
<div className='not-found-text-container'>
<p>Looks like this page hasn't been developed yet.</p>
<p>Would you like to join and be a part of creating it?</p>
</div>
<Link
href="https://github.com/code4sac/opensac.org"
className="not-found-link"
target="_blank"
rel="noopener noreferrer"
aria-label="Link to opensac.org github page."
>
Get Started
</Link>
<p>Explore our site using the menu above.</p>
</div>
</section>
</>
)
}