Rocky_Mountain_Vending/.pnpm-store/v10/files/4f/e604a0cd05c9d9184e7cf56e003ff39599ed8da342302cac2b26712719fdee8cc72e624f688fa5f974fe9b1d072559feb94720f047614bae1934a0749b7655
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

10 lines
199 B
Text

export type Locale = string;
export interface LocaleData<T> {
data: T;
locale: Locale;
}
export interface LookupMatcherResult {
locale: string;
extension?: string;
nu?: string;
}