Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/c948097168f52ca875d5445d6d46b7d6c47378f624adc278e64f7ef741dbb785559897581d680b9cc3ff5762731e2fd414a8eadac5435f92b0db9c25521ad4
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

15 lines
595 B
Text

export declare const DevtoolMenu: ({ closeOnClickOutside, items, }: {
closeOnClickOutside?: boolean;
items: Array<false | undefined | null | {
onClick?: () => void;
title?: string;
label: string;
value: React.ReactNode;
attributes?: Record<string, string | boolean>;
footer?: boolean;
}>;
}) => import("react/jsx-runtime").JSX.Element;
export declare function IssueCount({ children }: {
children: number;
}): import("react/jsx-runtime").JSX.Element;
export declare function ChevronRight(): import("react/jsx-runtime").JSX.Element;