Rocky_Mountain_Vending/.pnpm-store/v10/files/de/c489b1852ffa8e1acd1e98c058864e7a5cab6801eac5cf9cb0630fc866b139cbd6d1545f02426d56ce7a177a62e966a47224e2ba519c1c9ca25cd262042070
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
113 B
Text

export const sleep = (seconds) => {
return new Promise((resolve) => setTimeout(resolve, seconds * 1000));
};