Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/7ea24744f9ae822d8b044dfec3d49fd58e92fd5310b014d46600333251f779b76faf4bcbd236ea59dcd4cd5cf5540de721e6f2897f831b9cbbb3dc6807bb42
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

19 lines
693 B
Text

/**
* Fill the dynamic segment in the metadata route
*
* Example:
* fillMetadataSegment('/a/[slug]', { params: { slug: 'b' } }, 'open-graph') -> '/a/b/open-graph'
*
*/
export declare function fillMetadataSegment(segment: string, params: any, lastSegment: string): string;
/**
* Map metadata page key to the corresponding route
*
* static file page key: /app/robots.txt -> /robots.xml -> /robots.txt/route
* dynamic route page key: /app/robots.tsx -> /robots -> /robots.txt/route
*
* @param page
* @returns
*/
export declare function normalizeMetadataRoute(page: string): string;
export declare function normalizeMetadataPageToRoute(page: string, isDynamic: boolean): string;