Rocky_Mountain_Vending/.pnpm-store/v10/files/88/ce1be2f4c06c871e64436a8d95868bd5ee38e109a931fadd02adf5027ca0851b89de8415ab4018d9e0d20b937cadea5465186618e3439678688fa6e1287415
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

7 lines
382 B
Text

import type { PagesRouteDefinition } from '../route-definitions/pages-route-definition';
import { LocaleRouteMatcher } from './locale-route-matcher';
import { RouteMatcher } from './route-matcher';
export declare class PagesRouteMatcher extends RouteMatcher<PagesRouteDefinition> {
}
export declare class PagesLocaleRouteMatcher extends LocaleRouteMatcher<PagesRouteDefinition> {
}