Rocky_Mountain_Vending/.pnpm-store/v10/files/91/1ca02a64251092ffdc3e334ff837c1949192f30cbd8d0f04f1eeb1bfd37114073e42e86530592d151b3b2cb6e873eb3f371cb82bd9dfc80affe50c13d6f145
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

10 lines
608 B
Text

import type { CacheNode } from '../../shared/lib/app-router-types';
import { type AppRouterActionQueue, type GlobalErrorState } from './app-router-instance';
import type { StaticIndicatorState } from '../dev/hot-reloader/app/hot-reloader-app';
export declare function createEmptyCacheNode(): CacheNode;
export default function AppRouter({ actionQueue, globalErrorState, webSocket, staticIndicatorState, }: {
actionQueue: AppRouterActionQueue;
globalErrorState: GlobalErrorState;
webSocket?: WebSocket;
staticIndicatorState?: StaticIndicatorState;
}): import("react/jsx-runtime").JSX.Element;