Rocky_Mountain_Vending/.pnpm-store/v10/files/c8/ee40e6a76dcc8267c56214d2a3287ad13156575a3012b971aa12586a68137c0012bd92c15b93e4d07644983586f3e029da97fe06c8d2db6504d215c0909f86
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
736 B
Text

import { formatDistance } from "./kk/_lib/formatDistance.js";
import { formatLong } from "./kk/_lib/formatLong.js";
import { formatRelative } from "./kk/_lib/formatRelative.js";
import { localize } from "./kk/_lib/localize.js";
import { match } from "./kk/_lib/match.js";
/**
* @category Locales
* @summary Kazakh locale.
* @language Kazakh
* @iso-639-2 kaz
* @author Nikita Bayev [@drugoi](https://github.com/drugoi)
*/
export const kk = {
code: "kk",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default kk;