Rocky_Mountain_Vending/.pnpm-store/v10/files/82/c5fb3b7eaa00b3c10420d0746ec2de90ad0ed6e12843fc82bac2dd70e8d571e43970080539e81eed7b9ac1dab4b5563a9de1f183c61f0610057e707179d5a9
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
296 B
Text

const formatRelativeLocale = {
lastWeek: "'i' EEEE's kl.' p",
yesterday: "'igår kl.' p",
today: "'idag kl.' p",
tomorrow: "'imorgon kl.' p",
nextWeek: "EEEE 'kl.' p",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];