Rocky_Mountain_Vending/.pnpm-store/v10/files/b0/28fdc707ad8d1d9465da30224f6596615013aff9ad50a4c2672a0f904d76a3a39d55174c8b2893ec433a2fc2a2fa73cb4f0d2307bd69608ee80c5ac01d778a
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

31 lines
956 B
Text

import { formatDistance } from "./nl-BE/_lib/formatDistance.js";
import { formatLong } from "./nl-BE/_lib/formatLong.js";
import { formatRelative } from "./nl-BE/_lib/formatRelative.js";
import { localize } from "./nl-BE/_lib/localize.js";
import { match } from "./nl-BE/_lib/match.js";
/**
* @category Locales
* @summary Dutch locale.
* @language Dutch
* @iso-639-2 nld
* @author Jorik Tangelder [@jtangelder](https://github.com/jtangelder)
* @author Ruben Stolk [@rubenstolk](https://github.com/rubenstolk)
* @author Lode Vanhove [@bitcrumb](https://github.com/bitcrumb)
* @author Alex Hoeing [@dcbn](https://github.com/dcbn)
*/
export const nlBE = {
code: "nl-BE",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default nlBE;