Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/9d4ad0dd58f5a936b6e01bc2f6d3c19c6571cc84f840503597c0bbd0c1600f19f96bb20b4a24d391c1ada21759bff5906b8fd2d713216d69d115b49477479c
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
245 B
Text

import type { OutgoingHttpHeaders } from 'node:http';
export type RouteMetadata = {
status: number | undefined;
headers: OutgoingHttpHeaders | undefined;
postponed: string | undefined;
segmentPaths: Array<string> | undefined;
};