Rocky_Mountain_Vending/.pnpm-store/v10/files/92/37afd7e51326d457e366543b245e482f64cc0a37abfd6993ffc17e28977de897acb21c5a4204f0d288525c6f7aef5e55489c77f290eb389cc2ba3199205e3a
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

9 lines
345 B
Text

/**
* We only encode path delimiters for path segments from
* getStaticPaths so we need to attempt decoding the URL
* to match against and only escape the path delimiters
* this allows non-ascii values to be handled e.g.
* Japanese characters.
* */
declare function decodePathParams(pathname: string): string;
export { decodePathParams };