Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/c8c13589749be4dca43ccd20ab0d171aa8b5ca7c2823b47fa69bd070cffdd50c511f9ef1ded5342ae7c4c1cc4fd00baba5ad5bce7d406dace9248773b7e488
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

5 lines
273 B
Text

import React, { type JSX } from 'react';
import { type ErrorBoundaryProps } from '../error-boundary';
export default function RootErrorBoundary({ children, errorComponent, errorStyles, errorScripts, }: ErrorBoundaryProps & {
children: React.ReactNode;
}): JSX.Element;