Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/782a1386616a72c1eb6181bcb4eb2fe4fd8ed5bb309d9ed6ce3c1053d62cf38c35a3c3edc761e5d0dc3019d972c76ac77d67fb5cff4c7caf17b72914fbdd00
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

23 lines
No EOL
796 B
Text

import { RouteModule } from '../route-module';
import { renderToHTMLImpl, renderToHTML } from '../../render';
import * as vendoredContexts from './vendored/contexts/entrypoints';
export class PagesRouteModule extends RouteModule {
constructor(options){
super(options);
this.components = options.components;
}
render(req, res, context) {
return renderToHTMLImpl(req, res, context.page, context.query, context.renderOpts, {
App: this.components.App,
Document: this.components.Document
}, context.sharedContext, context.renderContext);
}
}
const vendored = {
contexts: vendoredContexts
};
// needed for the static build
export { renderToHTML, vendored };
export default PagesRouteModule;
//# sourceMappingURL=module.js.map