Rocky_Mountain_Vending/.pnpm-store/v10/files/99/f713a3d3c65d52cc0f33fce032d9a2eef7e2d16370017716e06d9cb31e19e88080ffaf294b4637952b672bb4e5ce6e6f8171930145c29b98db6087b60b4216
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

7 lines
814 B
Text

export type ErrorType = 'Build Error' | `Runtime ${string}` | `Console ${string}` | `Recoverable ${string}` | 'Blocking Route';
type ErrorTypeLabelProps = {
errorType: ErrorType;
};
export declare function ErrorTypeLabel({ errorType }: ErrorTypeLabelProps): import("react/jsx-runtime").JSX.Element;
export declare const styles = "\n .nextjs__container_errors_label {\n padding: 2px 6px;\n margin: 0;\n border-radius: var(--rounded-md-2);\n background: var(--color-red-100);\n font-weight: 600;\n font-size: var(--size-12);\n color: var(--color-red-900);\n font-family: var(--font-stack-monospace);\n line-height: var(--size-20);\n }\n\n .nextjs__container_errors_label_blocking_page {\n background: var(--color-blue-100);\n color: var(--color-blue-900);\n }\n";
export {};