Rocky_Mountain_Vending/.pnpm-store/v10/files/22/cd81a5244e8f0df2245814c90354121814e03d0429ca14231c1ee9b3fcb4e4ff62dc8249e7e5743b27d3215d926b833298054c83364dcf0197ecb0cde8e19a
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

15 lines
No EOL
705 B
Text

'use client';
import React from 'react';
export const AppRouterContext = React.createContext(null);
export const LayoutRouterContext = React.createContext(null);
export const GlobalLayoutRouterContext = React.createContext(null);
export const TemplateContext = React.createContext(null);
if (process.env.NODE_ENV !== 'production') {
AppRouterContext.displayName = 'AppRouterContext';
LayoutRouterContext.displayName = 'LayoutRouterContext';
GlobalLayoutRouterContext.displayName = 'GlobalLayoutRouterContext';
TemplateContext.displayName = 'TemplateContext';
}
export const MissingSlotContext = React.createContext(new Set());
//# sourceMappingURL=app-router-context.shared-runtime.js.map