diff --git a/src/Main.elm b/src/Main.elm
index a3bfbbfab34c0264f2f40496101aa86091326c2b..52b384a8209851e5e459534260e1503c850b0a39 100644
--- a/src/Main.elm
+++ b/src/Main.elm
@@ -168,9 +168,7 @@ viewNav ( global, _ ) =
         , div [ Html.Attributes.class "navbar-title" ]
             [ text "Schengen Visa Statistics" ]
         , div [ Html.Attributes.class "navbar-view-icons" ]
-            [ button [ activeClass Other |> Html.Attributes.class, ViewChange Other |> onClick ]
-                [ i [ Html.Attributes.class "fa-solid fa-wrench fa-xl" ] [] ]
-            , button [ activeClass MapView |> Html.Attributes.class, ViewChange MapView |> onClick ]
+            [ button [ activeClass MapView |> Html.Attributes.class, ViewChange MapView |> onClick ]
                 [ i [ Html.Attributes.class "fa-solid fa-map fa-xl" ] [] ]
             , button [ activeClass DataTable |> Html.Attributes.class, ViewChange DataTable |> onClick ]
                 [ i [ Html.Attributes.class "fa-solid fa-table fa-xl" ] [] ]
@@ -215,10 +213,6 @@ viewContent ( global, local ) =
             div [ Html.Attributes.class "content" ]
                 [ message ]
 
-        Other ->
-            div [ Html.Attributes.class "content" ]
-                [ text "Other Page" ]
-
         MapView ->
             div [ Html.Attributes.class "content" ]
                 [ MapView.view global local.map ]
diff --git a/src/Model.elm b/src/Model.elm
index 923afd8c75e3b63c83a6d0a193097923db1d1a26..3173e71f409c9d56e1c957157f1779c1abbebb5e 100644
--- a/src/Model.elm
+++ b/src/Model.elm
@@ -10,7 +10,6 @@ import Data.DataLoader exposing (Entry)
 
 type View
     = Home
-    | Other
     | MapView
     | DataTable
     | ForceDirectedGraph