Rocky_Mountain_Vending/.pnpm-store/v10/files/7d/9280e44b220a60fb68fc7268543fff093a92456e552ab3f26159d94b6e1d18c4c36118d18a8946a96b7827807a28b23e2ee5e34dc5c22bf43dc08be33dd78f
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

28 lines
No EOL
918 B
Text

import { jsx as _jsx } from "react/jsx-runtime";
import React from 'react';
import { loadGetInitialProps } from '../shared/lib/utils';
/**
* `App` component is used for initialize of pages. It allows for overwriting and full control of the `page` initialization.
* This allows for keeping state between navigation, custom error handling, injecting additional data.
*/ async function appGetInitialProps({ Component, ctx }) {
const pageProps = await loadGetInitialProps(Component, ctx);
return {
pageProps
};
}
export default class App extends React.Component {
static{
this.origGetInitialProps = appGetInitialProps;
}
static{
this.getInitialProps = appGetInitialProps;
}
render() {
const { Component, pageProps } = this.props;
return /*#__PURE__*/ _jsx(Component, {
...pageProps
});
}
}
//# sourceMappingURL=_app.js.map