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>
22 lines
641 B
Text
22 lines
641 B
Text
/**
|
|
* Submodules annotated with "Legacy" are from prior to the submodule system.
|
|
* They are exported from the package's root index to preserve backwards compatibility.
|
|
*
|
|
* New development should go in a proper submodule and not be exported from the root index.
|
|
*/
|
|
/**
|
|
* Legacy submodule.
|
|
*/
|
|
export * from "./submodules/client/index";
|
|
/**
|
|
* Legacy submodule.
|
|
*/
|
|
export * from "./submodules/httpAuthSchemes/index";
|
|
/**
|
|
* Legacy submodule.
|
|
*/
|
|
export * from "./submodules/protocols/index";
|
|
/**
|
|
* Warning: do not export any additional submodules from the root of this package. See readme.md for
|
|
* guide on developing submodules.
|
|
*/
|