iWeb / src /pages /NotFound.jsx
ronylu's picture
Upload 4 files
851da48 verified
Raw
History Blame Contribute Delete
513 Bytes
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>
);
}