Rocky_Mountain_Vending/.pnpm-store/v10/files/68/cefae6b534c48e1683291adb59aa47a8a3ec6c345071c621d138faa8a5e53c9fc47c8cb7966dc44c80e56f3ee8cc53b31bdb73af197e4bf460f6afa41ccdda
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

18 lines
926 B
Text

import type { ParsedUrlQuery } from 'querystring';
import type { Params } from '../../server/request/params';
/**
* When the Page is a client component we send the params and searchParams to this client wrapper
* where they are turned into dynamically tracked values before being passed to the actual Page component.
*
* additionally we may send promises representing the params and searchParams. We don't ever use these passed
* values but it can be necessary for the sender to send a Promise that doesn't resolve in certain situations.
* It is up to the caller to decide if the promises are needed.
*/
export declare function ClientPageRoot({ Component, serverProvidedParams, }: {
Component: React.ComponentType<any>;
serverProvidedParams: null | {
searchParams: ParsedUrlQuery;
params: Params;
promises: Array<Promise<any>> | null;
};
}): import("react/jsx-runtime").JSX.Element;