Rocky_Mountain_Vending/.pnpm-store/v10/files/79/86890fa767214c1aadc745256062322c0f95442aad67fa7b123b67783671033081ac376b02777525d1bc763425d1ae9bdc5508513042299c71d13563c62770
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

11 lines
277 B
Text

import * as React from 'react';
interface PresenceProps {
children: React.ReactElement | ((props: {
present: boolean;
}) => React.ReactElement);
present: boolean;
}
declare const Presence: React.FC<PresenceProps>;
export { Presence, type PresenceProps };