Rocky_Mountain_Vending/.pnpm-store/v10/files/87/9e74232291b31ff46b724935e516db1678d6b36f6e088d6f55918f475c84e1512bcd057fda2479624821eb8e46762cb33e69ab68a5c96b2776e46e57bd8ea2
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

19 lines
999 B
Text

import type { ErrorComponent } from './error-boundary';
import React from 'react';
/**
* OuterLayoutRouter handles the current segment as well as <Offscreen> rendering of other segments.
* It can be rendered next to each other with a different `parallelRouterKey`, allowing for Parallel routes.
*/
export default function OuterLayoutRouter({ parallelRouterKey, error, errorStyles, errorScripts, templateStyles, templateScripts, template, notFound, forbidden, unauthorized, segmentViewBoundaries, }: {
parallelRouterKey: string;
error: ErrorComponent | undefined;
errorStyles: React.ReactNode | undefined;
errorScripts: React.ReactNode | undefined;
templateStyles: React.ReactNode | undefined;
templateScripts: React.ReactNode | undefined;
template: React.ReactNode;
notFound: React.ReactNode | undefined;
forbidden: React.ReactNode | undefined;
unauthorized: React.ReactNode | undefined;
segmentViewBoundaries?: React.ReactNode;
}): React.ReactNode[];