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>
11 lines
296 B
Text
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];
|