Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/2a7b3d5c010ec8bdb29dda170aaf6da8c5f77debb1b9dbbe8b5698e53ce1ecc93b4ceaacc29d716523ae6d9d10e7c0c40dbb130c1fe03ea90e674d40d68788
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

30 lines
870 B
Text

import { formatDistance } from "./hr/_lib/formatDistance.js";
import { formatLong } from "./hr/_lib/formatLong.js";
import { formatRelative } from "./hr/_lib/formatRelative.js";
import { localize } from "./hr/_lib/localize.js";
import { match } from "./hr/_lib/match.js";
/**
* @category Locales
* @summary Croatian locale.
* @language Croatian
* @iso-639-2 hrv
* @author Matija Marohnić [@silvenon](https://github.com/silvenon)
* @author Manico [@manico](https://github.com/manico)
* @author Ivan Jeržabek [@jerzabek](https://github.com/jerzabek)
*/
export const hr = {
code: "hr",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default hr;