Rocky_Mountain_Vending/.pnpm-store/v10/files/7f/f2f23879c6a76972c060648275163c10858dbd7743e9ebeaf3ab67d3b5d695140e6124d439ffb23c13cfe81d083b31f243f573e0d7cc25fc7db8a1ac133ba5
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
303 B
Text

const formatRelativeLocale = {
lastWeek: "'afgelopen' 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];