Rocky_Mountain_Vending/.pnpm-store/v10/files/04/156b7aaa3125ec52076f1f7f3fc9929dcf84cd3d1a849c5ef01d4991bb68c086a35831905e5afd30a5176d684d00120407ee411d08bdab0f6f45c5de12d06b
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

41 lines
840 B
Text

"use strict";
exports.formatLong = void 0;
var _index = require("../../_lib/buildFormatLongFn.cjs");
const dateFormats = {
full: "eeee d. MMMM y",
long: "d. MMMM y",
medium: "d. MMM y",
short: "d.M.y",
};
const timeFormats = {
full: "HH.mm.ss zzzz",
long: "HH.mm.ss z",
medium: "HH.mm.ss",
short: "HH.mm",
};
const dateTimeFormats = {
full: "{{date}} 'klo' {{time}}",
long: "{{date}} 'klo' {{time}}",
medium: "{{date}} {{time}}",
short: "{{date}} {{time}}",
};
const formatLong = (exports.formatLong = {
date: (0, _index.buildFormatLongFn)({
formats: dateFormats,
defaultWidth: "full",
}),
time: (0, _index.buildFormatLongFn)({
formats: timeFormats,
defaultWidth: "full",
}),
dateTime: (0, _index.buildFormatLongFn)({
formats: dateTimeFormats,
defaultWidth: "full",
}),
});