Rocky_Mountain_Vending/.pnpm-store/v10/files/5a/fb7ed0d75d331955f78fd287d6125f9b451598e0ee35e12f9af8c57494ae2f1152ba0b2fa4f72390eb50391b786850610f23a7efff6ca6cec926988fdc04ae
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
321 B
Text

const formatRelativeLocale = {
lastWeek: "'mu dheireadh' eeee 'aig' p", //FIX
yesterday: "'an-dè aig' p",
today: "'an-diugh aig' p",
tomorrow: "'a-màireach aig' p",
nextWeek: "eeee 'aig' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];