Rocky_Mountain_Vending/.pnpm-store/v10/files/f8/9879ff0f83621589e03d04544d92ef3fc1962e6ad595924b5754337dd7e44cb51c5a9bdff3b3f396ee66dd1a2ae95cf8babea65912ec37efd8ce801c7b2641
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

17 lines
No EOL
630 B
Text

import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import DefaultGlobalError from '../../../client/components/builtin/global-error';
import { AppDevOverlayErrorBoundary } from './app-dev-overlay-error-boundary';
// If an error is thrown while rendering an RSC stream, this will catch it in
// dev and show the error overlay.
export function RootLevelDevOverlayElement({ children }) {
return /*#__PURE__*/ _jsx(AppDevOverlayErrorBoundary, {
globalError: [
DefaultGlobalError,
null
],
children: children
});
}
//# sourceMappingURL=client-entry.js.map