Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/a4561d2cc803dfb88b9a135eb4a83a0126da4910b5c039b7d0a2a653c8cfc5832b906ef161e38c61372ae5c62a94a81a4326812f52b46e75204202b45325e4
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

7 lines
228 B
Text

import * as React from 'react';
export type OverlayProps = React.HTMLAttributes<HTMLDivElement> & {
fixed?: boolean;
ref?: React.Ref<HTMLDivElement>;
};
declare const Overlay: React.FC<OverlayProps>;
export { Overlay };