diff --git a/apps/react-starter/src/main.tsx b/apps/react-starter/src/main.tsx
index 8d8950c..b209bc4 100644
--- a/apps/react-starter/src/main.tsx
+++ b/apps/react-starter/src/main.tsx
@@ -7,7 +7,6 @@ import "./i18n";
import App from "./App.tsx";
import OverviewPage from "./pages/overview/index.tsx";
import DevicesPage from "./pages/devices/index.tsx";
-import AnalyticsPage from "./pages/analytics/index.tsx";
import "@siemens/ix/dist/siemens-ix/siemens-ix.css";
function optionalTheme() {
@@ -43,10 +42,6 @@ const router = createHashRouter([
path: "/devices",
element: ,
},
- {
- path: "/analytics",
- element: ,
- },
],
},
]);
diff --git a/apps/react-starter/src/pages/analytics/index.tsx b/apps/react-starter/src/pages/analytics/index.tsx
deleted file mode 100644
index cd1f03c..0000000
--- a/apps/react-starter/src/pages/analytics/index.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-/*
- * SPDX-FileCopyrightText: 2024 Siemens AG
- *
- * SPDX-License-Identifier: MIT
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE file in the root directory of this source tree.
- */
-
-import { IxContentHeader } from "@siemens/ix-react";
-
-const AnalyticsPage = () => {
- return ;
-};
-
-export default AnalyticsPage;