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
321 B
Text
11 lines
321 B
Text
const formatRelativeLocale = {
|
|
lastWeek: "'mu dheireadh' eeee 'aig' p", //FIX
|
|
yesterday: "'an-dè aig' p",
|
|
today: "'an-diugh aig' p",
|
|
tomorrow: "'a-màireach aig' p",
|
|
nextWeek: "eeee 'aig' p",
|
|
other: "P",
|
|
};
|
|
|
|
export const formatRelative = (token, _date, _baseDate, _options) =>
|
|
formatRelativeLocale[token];
|