Open services/Router.js and replace in the go method, the case swith for /order with the following code:
case "/order":
// Lazy Load
await import("../components/OrderPage.js");
pageElement = document.createElement("order-page");
Router.setMetadata("Order", "blue")
Also remove from /app.js the import for ./components/OrderPage.js.