Rocky_Mountain_Vending/.pnpm-store/v10/files/71/c042ef5d8abed6fb921c0fbb940cd1b08282edff8f4160121098b7449000efbb9903d33799f84837ea61a222e1c166b78c2479f3d105c6a074797ce872cc9d
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
305 B
Text

const formatRelativeLocale = {
lastWeek: "eeee 'trecută la' p",
yesterday: "'ieri la' p",
today: "'astăzi la' p",
tomorrow: "'mâine la' p",
nextWeek: "eeee 'viitoare la' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];