Rocky_Mountain_Vending/.pnpm-store/v10/files/c0/367962bdc2dd63255887cd8814bb31d2d5dd3641e8ed9a36396b7f6ab3a9b244ad8369fe8d53693d2c122737b6ebc4e06d3bed1dd2ef5d54a9fba5181a362e
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

6 lines
186 B
Text

type PortalProps = {
children: React.ReactNode;
type: string;
};
export declare const Portal: ({ children, type }: PortalProps) => import("react").ReactPortal | null;
export {};