Rocky_Mountain_Vending/.pnpm-store/v10/files/10/1a7b76a50adbec4bfdd252e5f45bf334d900578cc3abd04d80255113d53f860de4564e1cd289a90510221822a7b1ec83a502078264cc1346fa3b4b9f383a1f
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

39 lines
766 B
Text

import { buildFormatLongFn } from "../../_lib/buildFormatLongFn.js";
const dateFormats = {
full: "y년 M월 d일 EEEE",
long: "y년 M월 d일",
medium: "y.MM.dd",
short: "y.MM.dd",
};
const timeFormats = {
full: "a H시 mm분 ss초 zzzz",
long: "a H:mm:ss z",
medium: "HH:mm:ss",
short: "HH:mm",
};
const dateTimeFormats = {
full: "{{date}} {{time}}",
long: "{{date}} {{time}}",
medium: "{{date}} {{time}}",
short: "{{date}} {{time}}",
};
export const formatLong = {
date: buildFormatLongFn({
formats: dateFormats,
defaultWidth: "full",
}),
time: buildFormatLongFn({
formats: timeFormats,
defaultWidth: "full",
}),
dateTime: buildFormatLongFn({
formats: dateTimeFormats,
defaultWidth: "full",
}),
};