diff --git a/src/components/Login/LoginForm.vue b/src/components/Login/LoginForm.vue
index 1ceef24595cf847372470f59f15d99242fdd8396..0d2476e38bc649774937dae44c5e3a056cad885a 100644
--- a/src/components/Login/LoginForm.vue
+++ b/src/components/Login/LoginForm.vue
@@ -56,7 +56,7 @@ const handleSubmit = async () => {
     });
     await router.push({ name: 'home' });
   } catch (error: any) {
-     errorMsg.value = handleUnknownError(error);
+    errorMsg.value = handleUnknownError(error);
   }
 }
 
@@ -64,6 +64,10 @@ const handleSubmit = async () => {
 
 <template>
   <div class="container-fluid">
+    <div class="container-fluid d-flex justify-content-center align-items-center flex-column mt-5">
+      <img src="@/assets/Sparesti-logo.png" style="width: 300px">
+      <h1>Sparesti.no</h1>
+    </div>
     <form ref="formRef" id="loginForm" @submit.prevent="handleSubmit" novalidate>
 
       <BaseInput :model-value="emailRef"
@@ -111,4 +115,8 @@ const handleSubmit = async () => {
 #confirmButton {
   margin: 1rem 0;
 }
+
+h1 {
+  font-size: 4rem;
+}
 </style>
\ No newline at end of file
diff --git a/src/components/UserProfile/UserProfileLayout.vue b/src/components/UserProfile/UserProfileLayout.vue
index 6734d7124f317c8e64a1a11fde23172c4058189d..e36115715e64b79691d773ea44286d46558620fd 100644
--- a/src/components/UserProfile/UserProfileLayout.vue
+++ b/src/components/UserProfile/UserProfileLayout.vue
@@ -18,7 +18,6 @@ function toRoadmap(){
 </script>
 
 <template>
-  <Menu></Menu>
     <div class="container text-center">
     <div class="row">
       <div class="col">
@@ -120,7 +119,6 @@ function toRoadmap(){
       </div>
     </div>
   </div>
-  <Footer></Footer>
 </template>
 
 <style scoped>
diff --git a/src/router/index.ts b/src/router/index.ts
index 2fa8ce7d2fabe6bfc6d5015ab463388614daf364..64d6aa4df586c56317e580fd2367b79edfbb3ce3 100644
--- a/src/router/index.ts
+++ b/src/router/index.ts
@@ -16,11 +16,10 @@ const routes = [
       {
         path: '',
         name: 'home',
-        component: () => import('../views/HomeView.vue'),
-        meta: { requiresAuth: true },
+        component: () => import('../views/SavingGoalView/RoadmapView.vue'),
       },
       {
-        path: '/news',
+        path: 'news',
         name: 'news',
         component: () => import('@/views/NewsView.vue'),
       },
@@ -49,11 +48,16 @@ const routes = [
         name: 'shop',
         component: () => import('@/views/ShopView.vue'),
       },
+      {
+        path: '/profile',
+        name: 'profile',
+        component: UserProfileView
+      },
       {
         path: 'admin',
         name: 'admin',
         component: () => import('@/views/TestView.vue'),
-        meta: { requiresAdmin: true }
+        meta: { requiresAdmin: true },
       },
       {
         path: 'unauthorized',
@@ -72,11 +76,6 @@ const routes = [
     name: 'login',
     component: LoginView,
   },
-  {
-    path: '/profile',
-    name: 'profile',
-    component: UserProfileView
-  },
   {
     path: '/sign-up',
     name: 'sign up',
@@ -135,18 +134,13 @@ router.beforeEach((to, from, next) => {
   const userRole = user.role;
   const isAuthenticated = user.isLoggedIn;
 
-  /*if (requiresAuth && !isAuthenticated) {
-    next({ name: 'login' });
+  if (requiresAuth && !isAuthenticated) {
+    next({ name: 'login', query: { redirect: to.fullPath } });
+  } else if (requiresAdmin && userRole !== 'admin') {
+    next({ name: 'unauthorized' });
   } else {
-    if (requiresAdmin && userRole !== 'admin') {
-      next({ name: 'unauthorized' });
-    } else {
-      next();
-    }
-  }*/
-
-  next();
-
+    next();
+  }
 });
 
 export default router;
\ No newline at end of file