Rocky_Mountain_Vending/.pnpm-store/v10/files/3a/ea2adc2a5179ef62e1cd244c5fbba8fceb508daf255b66e803a86aa298631640508e7107f1167f4a6af7bf2b02090e494f3306c206617efcbd4312f707d5f8
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

25 lines
1.6 KiB
Text

import type { ResolvedMetadata, ResolvedViewport } from '../types/metadata-interface';
export declare function ViewportMeta({ viewport }: {
viewport: ResolvedViewport;
}): import("react/jsx-runtime").JSX.Element[];
export declare function BasicMeta({ metadata }: {
metadata: ResolvedMetadata;
}): NonNullable<import("react/jsx-runtime").JSX.Element | (import("react/jsx-runtime").JSX.Element | null)[]>[];
export declare function ItunesMeta({ itunes }: {
itunes: ResolvedMetadata['itunes'];
}): import("react/jsx-runtime").JSX.Element | null;
export declare function FacebookMeta({ facebook, }: {
facebook: ResolvedMetadata['facebook'];
}): import("react/jsx-runtime").JSX.Element[] | null;
export declare function PinterestMeta({ pinterest, }: {
pinterest: ResolvedMetadata['pinterest'];
}): import("react/jsx-runtime").JSX.Element | null;
export declare function FormatDetectionMeta({ formatDetection, }: {
formatDetection: ResolvedMetadata['formatDetection'];
}): import("react/jsx-runtime").JSX.Element | null;
export declare function AppleWebAppMeta({ appleWebApp, }: {
appleWebApp: ResolvedMetadata['appleWebApp'];
}): NonNullable<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react/jsx-runtime").JSX.Element[]>[] | null;
export declare function VerificationMeta({ verification, }: {
verification: ResolvedMetadata['verification'];
}): NonNullable<import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>> | import("react").ReactElement<unknown, string | import("react").JSXElementConstructor<any>>[]>[][] | null;