Rocky_Mountain_Vending/.pnpm-store/v10/files/2a/7519c4b02e1da249c69de961c8a83c517fff2de37845fdc717b586e5a30064414850fe1295c7acf0b3d66fce9f8503b04f608f0c330009ee7b32988c5e735f
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
771 B
Text

import { formatDistance } from "./nn/_lib/formatDistance.js";
import { formatLong } from "./nn/_lib/formatLong.js";
import { formatRelative } from "./nn/_lib/formatRelative.js";
import { localize } from "./nn/_lib/localize.js";
import { match } from "./nn/_lib/match.js";
/**
* @category Locales
* @summary Norwegian Nynorsk locale.
* @language Norwegian Nynorsk
* @iso-639-2 nno
* @author Mats Byrkjeland [@draperunner](https://github.com/draperunner)
*/
export const nn = {
code: "nn",
formatDistance: formatDistance,
formatLong: formatLong,
formatRelative: formatRelative,
localize: localize,
match: match,
options: {
weekStartsOn: 1 /* Monday */,
firstWeekContainsDate: 4,
},
};
// Fallback for modularized imports:
export default nn;