Rocky_Mountain_Vending/.pnpm-store/v10/files/06/af296867b7617f8a721c2d1dcdc920e91e113360faa55819db32f17fe5258c3d0d9c29312a0832510249926111ca2bea437acb5b0f7e1235dbda04997b09e4
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
186 B
Text

type Colors = {
[key: string | number]: string | Colors;
};
declare function flattenColorPalette(colors: Colors): Record<string, string>;
export { flattenColorPalette as default };