Rocky_Mountain_Vending/.pnpm-store/v10/files/da/424fc8d9c6e5b4034ab8b4e1eb038471fcb9daae2e50c7538e2ede5a8f1aba3676d87279cccf850bcd14528d8fdcf9ef82cdf632bf0f557782603cdb526483
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

13 lines
203 B
Text

'use strict'
let Node = require('./node')
class Comment extends Node {
constructor(defaults) {
super(defaults)
this.type = 'comment'
}
}
module.exports = Comment
Comment.default = Comment