Rocky_Mountain_Vending/.pnpm-store/v10/files/16/2ffd9b29086b0799753ed559660fcb0be37fd7501fdf9f9859554003b62fb0cded86740b53481819a6446c5aa1daa1d99377f848003d67e9ebededdedefa0e
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
325 B
Text

const formatRelativeLocale = {
lastWeek: "eeee 'lepas pada jam' p",
yesterday: "'Semalam pada jam' p",
today: "'Hari ini pada jam' p",
tomorrow: "'Esok pada jam' p",
nextWeek: "eeee 'pada jam' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];