Rocky_Mountain_Vending/.pnpm-store/v10/files/0d/e38ff94bd2a76c695fd8573d0063d82232420bb954f21ee8304fd58d19a9f9e927a4026da802f89cf2de6657299b4035819a1b900dd06ed0c5a4b63faf0372
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

13 lines
No EOL
305 B
Text

/**
* Represents a month in a calendar year.
*
* A `CalendarMonth` contains the weeks within the month and the date of the
* month.
*/
export class CalendarMonth {
constructor(month, weeks) {
this.date = month;
this.weeks = weeks;
}
}
//# sourceMappingURL=CalendarMonth.js.map