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>
13 lines
546 B
Text
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 };
|