Rocky_Mountain_Vending/.pnpm-store/v10/files/16/8e1faf6d8e9637180bbe904e1149dca02013c4aeb5aa60c3041212e8a1e5ad4a7c632df4cf35f41cf7eac0cd6ec342b2db13409765d6c61a522bfab6c7c5f9
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

5 lines
271 B
Text

import type { LocaleRouteDefinition } from '../route-definitions/locale-route-definition';
import type { RouteMatch } from './route-match';
export interface LocaleRouteMatch<R extends LocaleRouteDefinition> extends RouteMatch<R> {
readonly detectedLocale?: string;
}