Files
000_notes/aastock/1/blog/app/not-found.tsx
louiscklaw 8013ac2455 update,
2025-02-01 20:19:28 +08:00

11 lines
267 B
TypeScript

export default function NotFound() {
return (
<section>
<h1 className="mb-8 text-2xl font-semibold tracking-tighter">
404 - Page Not Found
</h1>
<p className="mb-4">The page you are looking for does not exist.</p>
</section>
)
}