Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/0f39019e7aefaaf92395a36577d922b7c4aca55824df8b7e8ff7ce9b31bbae2849eb0a587925a74ce5d49b7986637d1b3dc5da20b6fe5776633342d1ff3f0a
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
225 B
Text

import type { RouteMatch } from './route-match';
import type { AppPageRouteDefinition } from '../route-definitions/app-page-route-definition';
export interface AppPageRouteMatch extends RouteMatch<AppPageRouteDefinition> {
}