diff --git a/.gitea/workflows/frontend_build-android.yaml b/.gitea/workflows/frontend_build-android.yaml
index 02bf3bf..95bcfe0 100644
--- a/.gitea/workflows/frontend_build-android.yaml
+++ b/.gitea/workflows/frontend_build-android.yaml
@@ -8,13 +8,13 @@ name: Build and release APK
 jobs:
   build:
     name: Build APK
-    runs-on: k8s
+    runs-on: ubuntu-latest
     steps:
 
     - name: Install prerequisites
       run: |
         sudo apt-get update
-        sudo apt-get install -y xz-utils unzip
+        sudo apt-get install -y jq
 
     - uses: https://gitea.com/actions/checkout@v4
 
diff --git a/deployment/kustomization.yaml b/deployment/kustomization.yaml
new file mode 100644
index 0000000..e69de29
diff --git a/frontend/lib/modules/scaffold.dart b/frontend/lib/modules/scaffold.dart
index 34c603c..822f208 100644
--- a/frontend/lib/modules/scaffold.dart
+++ b/frontend/lib/modules/scaffold.dart
@@ -22,7 +22,7 @@ class _BasePageState extends State<BasePage> {
     });
   }
 
-  Widget currentView = MapPage();
+  Widget currentView = MainPage();
   @override
   Widget build(BuildContext context) {
     final ThemeData theme = Theme.of(context);
@@ -51,7 +51,7 @@ class _BasePageState extends State<BasePage> {
                 // Update the state of the app
                 _onItemTapped(0);
                 // Then close the drawer
-                currentView = MapPage();
+                currentView = MainPage();
                 Navigator.pop(context);
               },
             ),