Rocky_Mountain_Vending/.pnpm-store/v10/files/76/5a0786728cf0bdbf59eed29e2b08d70651e39c13a11ce2553390628bc2c33e284010381df1ef8460afb1456261dcf29f2569243b1d6083e5f22c9dfebb3407
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
365 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: "'Praėjusį' eeee p",
yesterday: "'Vakar' p",
today: "'Šiandien' p",
tomorrow: "'Rytoj' p",
nextWeek: "eeee p",
other: "P",
};
const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];
exports.formatRelative = formatRelative;