Rocky_Mountain_Vending/.pnpm-store/v10/files/c6/b771c176d23e9a037f25a7b39e8626d0680246d7402098bb2f158716f0fbf5a798801f8aeaaeed29592dfd1437714b24a68de6efdb3dd1ff7103fc79ec6f95
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
300 B
Text

const formatRelativeLocale = {
lastWeek: "'vorige' eeee 'om' p",
yesterday: "'gisteren om' p",
today: "'vandaag om' p",
tomorrow: "'morgen om' p",
nextWeek: "eeee 'om' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];