Rocky_Mountain_Vending/.pnpm-store/v10/files/da/5c8ce0ac2a7e9127356cb1143e78630293ac1702503d875dc24ecdf99c9d4b5cbe512d99461064d661940166ea2f30191e1ff64200043eb6e9958d9c1975d9
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
309 B
Text

const formatRelativeLocale = {
lastWeek: "'sidste' eeee 'kl.' p",
yesterday: "'i går kl.' p",
today: "'i dag kl.' p",
tomorrow: "'i morgen kl.' p",
nextWeek: "'på' eeee 'kl.' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];