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

22 lines
547 B
Text

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",
};
export const formatRelative = (token, date, _baseDate, _options) => {
const format = formatRelativeLocale[token];
if (typeof format === "function") {
return format(date);
}
return format;
};