Rocky_Mountain_Vending/.pnpm-store/v10/files/1c/7943582e035e9af63234cd690d564e132a33b1a11cdc4a288bed1425110ee15b626a15b9a5ed577ae278c68037806e6e6e6ccb667e10bd599477623f97dfaa
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
246 B
Text

/**
* Insert a given element as the first child of a parent element.
*
* @param node the element to prepend
* @param parent the parent element
*/
export default function prepend(node: Element | null, parent: Element | null): Element | null;