Rocky_Mountain_Vending/.pnpm-store/v10/files/8a/f030c396be553a5f88ca148e97a1e0189938910a5f3183d0ba92427b36dac0fcb3634adcdac9953f044bff24baf431a38082862287736cf53a5418dd54e3cf
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

15 lines
387 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "eeee 'trecută la' p",
yesterday: "'ieri la' p",
today: "'astăzi la' p",
tomorrow: "'mâine la' p",
nextWeek: "eeee 'viitoare la' p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;