Rocky_Mountain_Vending/.pnpm-store/v10/files/02/cecb3f7b24c6a9ee2d8ea6ff634c7000f9ffc7227d38b1e28e1cc20dba7fcec00721d8895b84ba6c3046b133093535160066088875ea41fdaca0cf081359e0
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

4 lines
193 B
Text

import type { RouteMatcher } from '../route-matchers/route-matcher';
export interface RouteMatcherProvider<M extends RouteMatcher = RouteMatcher> {
matchers(): Promise<ReadonlyArray<M>>;
}