Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/01a287d3a088e5ea6ddfb0b9f5f621cd8d483d1e61972658bc7689f0a8f552adcab1a7dccb38638f1e2f3348f5efd0117aeba4b0c576e0c49183aaebc47dfe
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
311 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const formatRelativeLocale = {
lastWeek: "'geçen hafta' eeee 'saat' p",
yesterday: "'dün saat' p",
today: "'bugün saat' p",
tomorrow: "'yarın saat' p",
nextWeek: "eeee 'saat' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];