Rocky_Mountain_Vending/.pnpm-store/v10/files/b2/f5d6bd61b25d86f79a8ab7bdc92c23cc55c0eab9b20215ecd17ece6373a48cd035b86b721d0d079f0f635002149dd3660e81a13f03ed18796b05851e2e0c4c
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
258 B
Text

/**
* Collects all next sibling elements of an element until a given selector is matched.
*
* @param node the referene node
* @param selector the selector to match
*/
export default function nextUntil(node: Element | null, selector: string): Element[];