commerce/app/not-found.tsx
2025-05-20 17:24:09 +02:00

9 lines
251 B
TypeScript

export default function NotFound() {
return (
<div style={{ padding: 40, textAlign: 'center' }}>
<h1 style={{ fontSize: 48, marginBottom: 16 }}>404</h1>
<p style={{ fontSize: 18 }}>This page could not be found.</p>
</div>
);
}