forked from priyankarpal/projectshut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnot-found.tsx
22 lines (21 loc) · 1 KB
/
not-found.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Link from 'next/link';
export default function NotFound() {
return (
<section>
<div className="relative overflow-hidden">
<div className="pt-40 pb-48">
<div className="relative mx-auto max-w-7xl px-4 sm:static sm:px-6 lg:px-8">
<section className="sm:max-w-xl md:max-w-2xl tab:max-w-3xl lg:max-w-4xl">
<p className="text-4xl font-bold sm:text-[5vw] md:text-5xl lg:leading-[5.5rem] lg:text-[4rem] text-white">
Oh no! It seems like you've taken a wrong turn.
</p>
<p className="mt-4 text-xl text-gray-400 tracking-wide ">
Don't worry, though! Navigate to <Link href="/" className="text-primary">homepage</Link>.
</p>
</section>
</div>
</div>
</div>
</section>
);
}