Rocky_Mountain_Vending/.pnpm-store/v10/files/c1/fcb37c338ca4186bcdb584ecb7198047f363b671f3ebf9ef53162e9a9c7cc4960ef58b1b28678d58ecad4013e5a25eb8ce3d30464cf985924d3c4124ccbeb9
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

24 lines
923 B
Text

import React, { type JSX } from 'react';
import type { ScriptHTMLAttributes } from 'react';
export interface ScriptProps extends ScriptHTMLAttributes<HTMLScriptElement> {
strategy?: 'afterInteractive' | 'lazyOnload' | 'beforeInteractive' | 'worker';
id?: string;
onLoad?: (e: any) => void;
onReady?: () => void | null;
onError?: (e: any) => void;
children?: React.ReactNode;
stylesheets?: string[];
}
/**
* @deprecated Use `ScriptProps` instead.
*/
export type Props = ScriptProps;
export declare function handleClientScriptLoad(props: ScriptProps): void;
export declare function initScriptLoader(scriptLoaderItems: ScriptProps[]): void;
/**
* Load a third-party scripts in an optimized way.
*
* Read more: [Next.js Docs: `next/script`](https://nextjs.org/docs/app/api-reference/components/script)
*/
declare function Script(props: ScriptProps): JSX.Element | null;
export default Script;