File size: 1,083 Bytes
6076169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import { Button } from "@/components/ui/button";
import Link from "next/link";

export default function NotFound() {
	return (
		<main className="relative flex flex-col items-center justify-center px-4">
			<div className="mx-auto flex h-screen flex-col items-center justify-center">
				<div className="flex h-full flex-col items-center justify-center">
					<span className="not-found rounded-md bg-gradient-to-br from-violet-400 to-purple-600 px-3.5 py-1 font-medium text-neutral-50 text-sm">
						404
					</span>
					<h1 className="mt-5 font-bold text-3xl text-neutral-50 md:text-5xl">
						Not Found
					</h1>
					<p className="mx-auto mt-5 max-w-xl text-center font-medium text-base text-neutral-400">
						The page you are looking for does not exist. <br /> But don&apos;t
						worry, we&apos;ve got you covered. You can{" "}
						<Link href="/resources/help" className="text-foreground">
							contact us
						</Link>
						.
					</p>
					<Link href="/">
						<Button className="mt-8">Back to homepage</Button>
					</Link>
				</div>
			</div>
		</main>
	);
}