diff --git a/src/app/router/Router.tsx b/src/app/router/Router.tsx
index 85d8ea30..b04b5f41 100644
--- a/src/app/router/Router.tsx
+++ b/src/app/router/Router.tsx
@@ -23,6 +23,7 @@ import FeedSubmitted from '../screens/FeedSubmitted';
import GTFSFeedAnalytics from '../screens/Analytics/GTFSFeedAnalytics';
import GTFSNoticeAnalytics from '../screens/Analytics/GTFSNoticeAnalytics';
import GTFSFeatureAnalytics from '../screens/Analytics/GTFSFeatureAnalytics';
+import GTFSFeaturesTracker from '../screens/Analytics/GTFSFeaturesTracker';
import GBFSFeedAnalytics from '../screens/Analytics/GBFSFeedAnalytics';
import GBFSNoticeAnalytics from '../screens/Analytics/GBFSNoticeAnalytics';
import GBFSVersionAnalytics from '../screens/Analytics/GBFSVersionAnalytics';
@@ -91,6 +92,7 @@ export const AppRouter: React.FC = () => {
} />
} />
} />
+ } />
} />
diff --git a/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx b/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
new file mode 100644
index 00000000..cccc8bbd
--- /dev/null
+++ b/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
@@ -0,0 +1,22 @@
+import * as React from 'react';
+import Box from '@mui/material/Box';
+
+export default function GTFSFeatureAnalytics(): React.ReactElement {
+ return (
+
+
+
+
+
+ );
+}