diff --git a/src/components/MainMenu/MainMenuSideBar.tsx b/src/components/MainMenu/MainMenuSideBar.tsx
index ee53559ac5b6297f7cdefa5d2d125aeb90c0f978..2891c843eb7f64c4b947249cf98209e5cfcc4cbf 100644
--- a/src/components/MainMenu/MainMenuSideBar.tsx
+++ b/src/components/MainMenu/MainMenuSideBar.tsx
@@ -140,6 +140,12 @@ export default function MainMenuSideBar(props: MainMenuSideBarProps) {
           index: 72,
           onClick: () => navigate("/utilities-methods/file-uploader"),
         },
+        
+        {
+          label: "File download",
+          index: 73,
+          onClick: () => navigate("/utilities-methods/file-downloader"),
+        },
       ],
     },
   ];
diff --git a/src/pages/download-page/FileDownloadPage.jsx b/src/pages/download-page/FileDownloadPage.jsx
new file mode 100644
index 0000000000000000000000000000000000000000..4e4690fbc14b77e0dec4ee24871b43edfa1addcf
--- /dev/null
+++ b/src/pages/download-page/FileDownloadPage.jsx
@@ -0,0 +1,10 @@
+import * as React from "react";
+
+const FileDownloadPage = props =>{
+    return(
+        <div>
+        FileDownloadPage
+        </div>
+    )
+}
+export default FileDownloadPage;
\ No newline at end of file
diff --git a/src/routes/MainRouter.jsx b/src/routes/MainRouter.jsx
index d5ee59b3c25d5022600756a9d4c4e8bde7d61118..9fbb6588adc5a7b671053236d34818a37bc4f1ee 100644
--- a/src/routes/MainRouter.jsx
+++ b/src/routes/MainRouter.jsx
@@ -20,6 +20,7 @@ import AvatarDemoPage from "../pages/demo/AvatarDemoPage";
 import FileInputButtonApi from "../pages/api/FileInputButtonApi";
 import AvatarApi from "../pages/api/AvatarApi";
 import FileInputButtonDemoPage from "../pages/demo/FileInputButtonDemoPage";
+import FileDownloadPage from "../pages/download-page/FileDownloadPage";
 
 const router = createBrowserRouter([
   {
@@ -128,6 +129,10 @@ const router = createBrowserRouter([
         path: "/utilities-methods/file-uploader",
         element: <FileUploaderPage />,
       },
+      {
+        path: "/utilities-methods/file-downloader",
+        element: <FileDownloadPage />,
+      },
     ],
   },
 ]);