generated from theodorusclarence/ts-nextjs-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
|
||
import Heading from '@/components/atoms/headings/Heading'; | ||
import UnstyledLink from '@/components/atoms/links/UnstyledLink'; | ||
|
||
export default async function NotFound() { | ||
return ( | ||
<section className='dark:bg-dark bg-white'> | ||
<div className='layout relative flex flex-col py-16 md:py-24 items-center justify-center'> | ||
<div className='p-4'> | ||
<Heading title='404.title' /> | ||
</div> | ||
|
||
<span className='text-3xl text-center'> | ||
Whoopsie, this page could not be found. | ||
</span> | ||
|
||
<div className='my-32 text-2xl'> | ||
<UnstyledLink | ||
className='decoration-2 animated-underline-2 dark:animated-underline' | ||
href='/' | ||
> | ||
Go back home | ||
</UnstyledLink> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,5 +99,8 @@ | |
}, | ||
"recruiters": { | ||
"title": "Info for Recruiters" | ||
}, | ||
"404": { | ||
"title": "<404 />" | ||
} | ||
} |