Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/be131aeb9405e1f95f48921c0c26e89348804379e5bc47ed11b95a5cc9b00e1e1a1d882895df6cb663fbca5fb9c59c28a7000fa070c356563b47ff7324c019
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

29 lines
810 B
Text

import { formatDistance } from "./be/_lib/formatDistance.js";
import { formatLong } from "./be/_lib/formatLong.js";
import { formatRelative } from "./be/_lib/formatRelative.js";
import { localize } from "./be/_lib/localize.js";
import { match } from "./be/_lib/match.js";
/**
* @category Locales
* @summary Belarusian locale.
* @language Belarusian
* @iso-639-2 bel
* @author Kiryl Anokhin [@alyrik](https://github.com/alyrik)
* @author Martin Wind [@arvigeus](https://github.com/mawi12345)
*/
export const be = {
code: "be",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 1,
},
};
// Fallback for modularized imports:
export default be;