Rocky_Mountain_Vending/.pnpm-store/v10/files/a8/f214fc03af5ef143ccc3f48264ce7c2ec9eab828d9f21838d790dc600b870c47a585a2f797018dfa2d6e53006756213f0d419d5d0880263f9da9ca0f3ca6a6
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

15 lines
261 B
Text

declare module 'styled-jsx/macro' {
import type { JSX } from "react";
namespace macro {
function resolve(
chunks: TemplateStringsArray,
...args: any[]
): {
className: string
styles: JSX.Element
}
}
export = macro
}