diff --git a/frontend/src/App.vue b/frontend/src/App.vue
index 45c52ace43b3f82ea88ac783799c765ef423d10b..1caff4e8cc2414c68eeb275baf47e81e529ae4ce 100644
--- a/frontend/src/App.vue
+++ b/frontend/src/App.vue
@@ -2,10 +2,15 @@
   <v-app>
     <Navbar/>
     <v-content class="ma-3">
-      <keep-alive>
+      <keep-alive :exclude="/gene-detail.*/">
         <router-view></router-view>
       </keep-alive>
+
     </v-content>
+    <v-footer class="pa-3">
+      <v-spacer></v-spacer>
+      <div>Some footer (<span class="font-italic font-weight-light">hash latest commit</span>)</div>
+    </v-footer>
   </v-app>
 </template>