Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/d0ce0f442f30c20fed39f2bb2c7863f84ede9c10b6382e319ae7322033ceaa13a61cf0dd7a393fc8a44b3eed06f7b94e9e9b91a2722463f4484d39170358ee
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
262 B
Text

/**
* Returns the offset of a given element, including top and left positions, width and height.
*
* @param node the element
*/
export default function offset(node: HTMLElement): {
top: number;
left: number;
height: number;
width: number;
};