Rocky_Mountain_Vending/.pnpm-store/v10/files/97/e62af8853005af00db768580aabc21615b814d203b5e1a99f321df19a8af2ad23687bab3c42f23457d4a6384e14de9f05ab4ee1fefc3a95fcb37d02e0f86e9
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
285 B
Text

const formatRelativeLocale = {
lastWeek: "'上個'eeee p",
yesterday: "'昨天' p",
today: "'今天' p",
tomorrow: "'明天' p",
nextWeek: "'下個'eeee p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];