9 lines
208 B
TypeScript
9 lines
208 B
TypeScript
export default function NotFound() {
|
|
return (
|
|
<section class="text-gray-700 p-8">
|
|
<h1 class="text-2xl font-bold">404: Not Found</h1>
|
|
<p class="mt-4">It's gone 😞</p>
|
|
</section>
|
|
);
|
|
}
|