Rocky_Mountain_Vending/.pnpm-store/v10/files/7f/466606f846956821d0e64981b34767d9f57421f651efcbe36c5287c3d215de4dbaf981ac754cb8165459dc02da09ab282c8d44ccae171187bd9b65b4750bec
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

11 lines
311 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const formatRelativeLocale = {
lastWeek: "eeee 'dernier à' p",
yesterday: "'hier à' p",
today: "'aujourdhui à' p",
tomorrow: "'demain à' p'",
nextWeek: "eeee 'prochain à' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];