Rocky_Mountain_Vending/.pnpm-store/v10/files/64/f79a852528f3c71b583401173eb43f22bdd409df22eaf1cf045c10b34e08a80a9a5d0fea16039843b522885da132345f5cc099651b3ad5582186d5afca3e52
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
756 B
Text

import { formatDistance } from "./se/_lib/formatDistance.js";
import { formatLong } from "./se/_lib/formatLong.js";
import { formatRelative } from "./se/_lib/formatRelative.js";
import { localize } from "./se/_lib/localize.js";
import { match } from "./se/_lib/match.js";
/**
* @category Locales
* @summary Northern Sámi locale.
* @language Northern Sámi
* @iso-639-2 sme
* @author Audun Rundberg [@audunru](https://github.com/audunru)
*/
export const se = {
code: "se",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default se;