Rocky_Mountain_Vending/.pnpm-store/v10/files/e8/ad8112a1baaf7d0609095e16dcba3a8ecf68bd4a1514de261cf11e7febdb95db0d9419b4e756fa81d7c6c238ec663e2154b8a736503a6f0a3b66e60a396961
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

3 lines
154 B
Text

export function createObject(keys: string[], values: any[]) {
return keys.reduce((result, key, i) => ((result[key] = values[i]), result), {} as any);
}