Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/e2ef0ad424c78ec2309b752d1d151556ad017bf38596147fd1a8badef097d533b60a3f1fd885b46b822808ee6cf3e712f24b9af33b72ff7b5ef6cd2a7219a1
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
383 B
Text

const formatRelativeLocale = {
lastWeek: "'ಕಳೆದ' eeee p 'ಕ್ಕೆ'",
yesterday: "'ನಿನ್ನೆ' p 'ಕ್ಕೆ'",
today: "'ಇಂದು' p 'ಕ್ಕೆ'",
tomorrow: "'ನಾಳೆ' p 'ಕ್ಕೆ'",
nextWeek: "eeee p 'ಕ್ಕೆ'",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) =>
formatRelativeLocale[token];