Rocky_Mountain_Vending/.pnpm-store/v10/files/c5/7558de683c694b3844be20112c4b6a8a6e73d19d7d7aeccff63bae82fc8e2ce33e36117482715567ddfd4acad985c0f0b7f1488b9715d20ef40018630d3229
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

8 lines
No EOL
180 B
Text

/**
* Collects all child elements of an element.
*
* @param node the element
*/
export default function childElements(node) {
return node ? Array.from(node.children) : [];
}