Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/b9d028797a17d56d519166d5411718f5fbe73e43dcbcadc3719c8bfc5e0c964a18e1d0c41d3654eebbb83fc7d65dcd95e033006f68ca069943b71937c94d3b
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

8 lines
233 B
Text

import * as CSS from 'csstype'
type Styles = keyof CSSStyleDeclaration
export type HyphenProperty = keyof CSS.PropertiesHyphen
export type CamelProperty = keyof CSS.Properties
export type Property = HyphenProperty | CamelProperty