Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/ca3b2651ca90683c9790c086d6eec38a46286982d0f5b90aa62696734d074f7c28fe500b5217783d45bc370d780e959a71229a20ed6b5e80b75af402e9fe41
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
147 B
Text

export default {
fetch() {
return new Response("Not found", {
status: 404,
headers: {
"Content-Type": "text/html",
},
});
},
};