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

13 lines
546 B
Text

import * as react_jsx_runtime from 'react/jsx-runtime';
import * as React from 'react';
interface SlotProps extends React.HTMLAttributes<HTMLElement> {
children?: React.ReactNode;
}
declare const Slot: React.ForwardRefExoticComponent<SlotProps & React.RefAttributes<HTMLElement>>;
declare const Slottable: ({ children }: {
children: React.ReactNode;
}) => react_jsx_runtime.JSX.Element;
declare const Root: React.ForwardRefExoticComponent<SlotProps & React.RefAttributes<HTMLElement>>;
export { Root, Slot, type SlotProps, Slottable };