Rocky_Mountain_Vending/.pnpm-store/v10/files/d1/2d7c629899635bf58554789dd4927acdbe576637e3cd2ac52f8384ae42dc20fb21a06a31769f468739791ee50a38dfd2a62d2154a8cc6a7ed37e2cef15f216
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

26 lines
629 B
Text

"use strict";
exports.formatRelative = void 0;
const formatRelativeLocale = {
lastWeek: (date) => {
const weekday = date.getDay();
const last = weekday === 0 || weekday === 6 ? "último" : "última";
return "'" + last + "' eeee 'às' p";
},
yesterday: "'ontem às' p",
today: "'hoje às' p",
tomorrow: "'amanhã às' p",
nextWeek: "eeee 'às' p",
other: "P",
};
const formatRelative = (token, date, _baseDate, _options) => {
const format = formatRelativeLocale[token];
if (typeof format === "function") {
return format(date);
}
return format;
};
exports.formatRelative = formatRelative;