Rocky_Mountain_Vending/.pnpm-store/v10/files/67/3d835eddc722bbc426f3a1248c637b5975e7fb78eee15dba2ca89afcffb676baee7add0d40932e3395972a49a9541ceb20d2f993c44d5f42e194e115ec53fd
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

10 lines
215 B
Text

import { escapeElement } from "./escape-element";
export class XmlText {
value;
constructor(value) {
this.value = value;
}
toString() {
return escapeElement("" + this.value);
}
}