Rocky_Mountain_Vending/.pnpm-store/v10/files/c9/711df306891df59811f5f176dc021138d1fa652488989b85c56869ea3b4a89cc0ff131f9d03acf04ddbfe62fa0e80f5d60ed3e286d2aba7217514e63bb755e
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

23 lines
615 B
Text

const formatRelativeLocale = {
lastWeek: (date) => {
switch (date.getDay()) {
case 6: //Σάββατο
return "'το προηγούμενο' eeee 'στις' p";
default:
return "'την προηγούμενη' eeee 'στις' p";
}
},
yesterday: "'χθες στις' p",
today: "'σήμερα στις' p",
tomorrow: "'αύριο στις' p",
nextWeek: "eeee 'στις' p",
other: "P",
};
export const formatRelative = (token, date) => {
const format = formatRelativeLocale[token];
if (typeof format === "function") return format(date);
return format;
};