Rocky_Mountain_Vending/.pnpm-store/v10/files/03/43fbd7ed6c7e4365da7389f3579c47543c6f8739af9bd2b9d97cb6925bf4ee1490a84a5a51e803fb6ae85e762f494d8a8e80e623f7ef1b8b004e9c4c170862
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

12 lines
No EOL
200 B
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = colors;
function colors(s) {
return s.match(/.{6}/g).map(function (x) {
return "#" + x;
});
}