Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/c2a25214f735064b6c325a26c7cd5e25e8159cc65d022f7b0a3934f9a74b36f25199e13c3a75bed5b3d1af407c5cf9b0d0d6c877b7bf9c5057001eb08bccdf
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

5 lines
108 B
Text

export default function colors(s) {
return s.match(/.{6}/g).map(function(x) {
return "#" + x;
});
}