Rocky_Mountain_Vending/.pnpm-store/v10/files/3f/425c122093d4aa3286cb4045626b185a5dfca7a4a66b0d6473c38865e7b3e5dcf7311cf68f9dc72d6237a4b06f56873f49f68206e80f1b5d05a4944f7f05ef
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

6 lines
236 B
Text

import { Identity, IdentityProvider } from "./Identity";
export interface LoginIdentity extends Identity {
readonly username: string;
readonly password: string;
}
export type LoginIdentityProvider = IdentityProvider<LoginIdentity>;