mirror of
https://github.com/vercel/commerce.git
synced 2025-06-07 16:56:59 +00:00
10 lines
286 B
TypeScript
10 lines
286 B
TypeScript
// app/_not-found/page.tsx
|
|
export default function StubNotFound() {
|
|
return (
|
|
<div style={{ padding: '4rem', textAlign: 'center' }}>
|
|
<h1 style={{ fontSize: '3rem', marginBottom: '1rem' }}>404</h1>
|
|
<p style={{ fontSize: '1.25rem' }}>Page not found.</p>
|
|
</div>
|
|
)
|
|
}
|