Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/264e794578ab019508e901fd10458662953789c4c86a6092c9c5749164ace9fe43fa0e886a2397ec1c78176fdaa5e6ef9555081b44953d4630099ae32b6cf8
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
172 B
Text

import { TokenIdentity } from "./identity";
import { Provider } from "./util";
export interface Token extends TokenIdentity {}
export type TokenProvider = Provider<Token>;