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>
11 lines
262 B
Text
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;
|
|
};
|