diff --git a/src/views/Home.vue b/src/views/Home.vue
index 422ab5c4fb1cc5c5fd106b0b23f63b461b4194b3..af20285b7fa48224c4e63f2ad7c6ff0c826b27b7 100644
--- a/src/views/Home.vue
+++ b/src/views/Home.vue
@@ -2,14 +2,13 @@
   <div class="flex flex-row">
     <section
       v-show="!sideBarHidden"
-      class="flex flex-col sticky top-0 h-screen w-72"
+      class="flex flex-col sticky top-0 h-screen w-1/3"
     >
       <button @click="sideBarHidden = true" class="self-end mt-2">
         <IconXCircle
           class="stroke-current text-gray-500 hover:text-gray-600"
         ></IconXCircle>
       </button>
-      <input type="text" />
       <TagCreation></TagCreation>
       <UserAuthentication class="absolute bottom-0"></UserAuthentication>
     </section>
@@ -31,6 +30,11 @@
         @onPageChange="pageChange"
       />
       <ImageList :imageSnowflakes="imageSnowflakes"></ImageList>
+      <PaginationBar
+        :current-page="currentPage"
+        :last-page="lastPage"
+        @onPageChange="pageChange"
+      />
     </div>
   </div>
 </template>