File size: 513 Bytes
851da48
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import React from "react";
import { Link } from "react-router-dom";

export default function NotFound() {
  return (
    <div className="rounded-3xl border border-neutral-200 bg-white p-8">
      <h2 className="text-2xl font-semibold">Page not found</h2>
      <p className="pt-2 text-neutral-600">The page you requested doesn’t exist.</p>
      <Link to="/" className="mt-6 inline-block rounded-full bg-neutral-900 px-5 py-2.5 text-sm font-semibold text-white">
        Go home
      </Link>
    </div>
  );
}