Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
15 lines
No EOL
512 B
Text
15 lines
No EOL
512 B
Text
import { jsx as _jsx } from "react/jsx-runtime";
|
|
import { HTTPAccessErrorFallback } from '../http-access-fallback/error-fallback';
|
|
function GlobalNotFound() {
|
|
return /*#__PURE__*/ _jsx("html", {
|
|
children: /*#__PURE__*/ _jsx("body", {
|
|
children: /*#__PURE__*/ _jsx(HTTPAccessErrorFallback, {
|
|
status: 404,
|
|
message: 'This page could not be found.'
|
|
})
|
|
})
|
|
});
|
|
}
|
|
export default GlobalNotFound;
|
|
|
|
//# sourceMappingURL=global-not-found.js.map |