Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/b7487f39cdfbd6ac80748bda7aa082490f8630c486dc9adeff6859f979bb0ae73c2a4d90e98b45d23e07383e11de279d639f2a0dcd04f2eb738b9eb638948b
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

12 lines
292 B
Text

/**
* Returns the relative position of a given element.
*
* @param node the element
* @param offsetParent the offset parent
*/
export default function position(node: HTMLElement, offsetParent?: HTMLElement): {
top: number;
left: number;
height: number;
width: number;
};