Rocky_Mountain_Vending/.pnpm-store/v10/files/d3/98dcd58f356d202341f340e39069204e4d4cbe4456cf7c0139382fc512acb56b35812def034269530d1fa8dc699708354f99dd63c9933a0f69914b70f9fbca
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

28 lines
777 B
Text

import { formatDistance } from "./zh-HK/_lib/formatDistance.js";
import { formatLong } from "./zh-HK/_lib/formatLong.js";
import { formatRelative } from "./zh-HK/_lib/formatRelative.js";
import { localize } from "./zh-HK/_lib/localize.js";
import { match } from "./zh-HK/_lib/match.js";
/**
* @category Locales
* @summary Chinese Traditional locale.
* @language Chinese Traditional
* @iso-639-2 zho
* @author Gary Ip [@gaplo](https://github.com/gaplo)
*/
export const zhHK = {
code: "zh-HK",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 0 /* Sunday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default zhHK;