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>
10 lines
608 B
Text
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;
|