Rocky_Mountain_Vending/.pnpm-store/v10/files/07/6e1d96b77cd9a5c120a7e8e01cd5447f5e83217c518e64c9019406104facab0a21b83e1c6d16a1467641c43ed98edb85eea64ba294b7d7f29c38c80f2f2039
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
461 B
Text

/**
* Generates the ARIA label for the "previous month" button.
*
* @defaultValue `"Go to the Previous Month"`
* @param month - The date representing the previous month, or `undefined` if
* there is no previous month.
* @returns The ARIA label for the "previous month" button.
* @group Labels
* @see https://daypicker.dev/docs/translation#aria-labels
*/
export function labelPrevious(month: Date | undefined) {
return "Go to the Previous Month";
}