Rocky_Mountain_Vending/.pnpm-store/v10/files/9d/36fc27c4ce29b5b0b144fe8a8da6eb43dc81efe0a89de75775b6b71938d04ea703861e732d8b224e1a2505489a24d5515e4873a379fe388120ff58de07c399
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

9 lines
269 B
Text

import { Measurable } from '@radix-ui/rect';
/**
* Use this custom hook to get access to an element's rect (getBoundingClientRect)
* and observe it along time.
*/
declare function useRect(measurable: Measurable | null): ClientRect | undefined;
export { useRect };