diff --git a/public/css/thread.css b/public/css/thread.css
index 569bd2a..c1fec3b 100644
--- a/public/css/thread.css
+++ b/public/css/thread.css
@@ -1,139 +1,136 @@
-:root {
-  /* Apprentice Scheme */
-  /*
-   * use `var(--col-x)` instead of directly typing the color.
-  */
-  --col-0: #1C1C1C;
-  --col-1: #AF5F5F;
-  --col-2: #5F875F;
-  --col-3: #87875F;
-  --col-4: #5F87AF;
-  --col-5: #5F5F87;
-  --col-6: #5F8787;
-  --col-7: #6C6C6C;
-  --col-8: #444444;
-  --col-9: #FF8700;
-  --col-10: #87AF87;
-  --col-11: #FFFFAF;
-  --col-12: #8FAFD7;
-  --col-13: #8787AF;
-  --col-14: #5FAFAF;
-  --col-15: #FFFFFF;
-  --col-fg: #BCBCBC;
-  --col-bg: #262626;
+.title {
+ color: #414141;
+font-weight: 700;
+font-size: 36px;
+}
+.date{
+  color: gray;
 }
 
-
-
-textarea {
-
-  font-family: monospace;
-  border: 2px solid var(--col-8);
-  color: var(--col-fg);
-  width: auto;
-  height: auto;
-  cursor: pointer;
-  resize: none;
+.thread{
+  max-width: 800px;
+  box-shadow: 0 0 5px 0 #c3c3c3;
+  margin: 10px auto;
+  padding: 20px;
+  display:flex;
+  gap:10px;
+  position:relative;
 }
 
-
-
-h1,
-h2,
-h3,
-h4,
-h5 {
-  margin-bottom: 0.1rem;
-}
-
-
-
-button,
-input {
-  font-family: monospace;
-  background-color: var(--col-bg);
-  border: 2px solid var(--col-8);
-
-  color: var(--col-fg);
-  width: auto;
-  height: 30px;
-
-}
-
-button.big {
-  width: 150px;
-  height: 50px;
-}
-
-input {
-  width: 75%;
-  cursor: pointer;
-  color: var(--col-fg);
-}
-
-button:hover {
-  background-color: var(--col-fg);
-  color: var(--col-bg);
-}
-
-
-/* NAVBAR: */
-
-
-.user {
-  margin: 0;
-  border: 1px solid var(--col-8);
-}
-
-.user h1 {
-  font-family: monospace;
-  background: #333;
-  color: var(--col-fg);
-  margin: auto;
+.thread .left{
   text-align: center;
-  line-height: 1;
-  color: var(--col-13);
-  font-size: 27px;
+border-right: 2px solid #d9d9d9;
 }
 
-.user img {
-  padding: 6px 10px;
+.thread .left img{
+  width: 100px;
+height: 100px;
+border-radius: 50%;
+margin-right: 5px;
 }
 
-.user a {
-  color: var(--col-13);
-  padding: 0px 5px;
+.thread .left .username{
+color: #555;
+}
+
+.content{
+  width: 70%;
+}
+
+.likes{
+  position:absolute;
+  right:20px;
+  bottom:20px;
+  display:flex;
+  align-items:center;
+  gap:10px;
+}
+.likes div{
+  display:flex;
+  align-items:center;
+  gap:5px;
+  padding:4px;
+  color: #747474;
+  cursor:pointer;
+  transition:color 0.3s ease;
+}
+.likes div:hover{
+    color: #151515;
+
+}
+
+.likes div i{
+  font-size:22px;
 }
 
 
-div.message {
-  border: 2px solid var(--col-8);
-  margin: auto;
-  padding-inline: 100;
+.pagination{
+  box-shadow: 0 0 5px 0 #c3c3c3;
+  margin: 10px auto;
+  padding: 8px;
+  display:flex;
+  justify-content:space-between;
+  align-items:center;
+  max-width:400px;
+  gap:10px;
+  position:relative;
+}
+
+.pagination .back ,
+.pagination .after {
+  color:#747474;
+  font-size:26px;
+  cursor:pointer;
 }
 
 
-
-/*
-*****************************
-           IMAGES
-*****************************
-*/
-img.circle {
-  border-radius: 50%;
-  height: 30px;
-  width: 30px;
+.pagination .numbers{
+  display:flex;
+  align-items:center;
+  gap:5px;
 }
-
-img.logo {
-  width: 266px;
-  height: 75px;
+.pagination .number {
+	color: #747474;
+	font-size: 22px;
+	border: 0 0 5px #747474;
+	padding: 8px;
+	border-radius: 2px;
+	font-weight: 600;
+	cursor: pointer;
+	margin: 8px;
+}
+.pagination .number.active{
+color: #4d18e6;
+font-weight: 700;
 }
 
 
-/*
-*****************************
-         ADMIN TEXT
-*****************************
-*/
-p {font-size: 18px;}
\ No newline at end of file
+.dots{
+position: absolute;
+right: 20px;
+font-size: 22px;
+top: 10px;
+color: #747474;
+  cursor:pointer;
+}
+
+.dots-menu{
+ position: absolute;
+top: 50px;
+right: 0;
+background-color: #e6e6e6;
+padding: ;
+width: 100px;
+text-align: center;
+  display:none;
+}
+
+.dots-menu.active{
+  display:block;
+}
+
+.dots-menu a{
+  display:block;
+  margin:8px;
+  cursor:pointer;
+}
diff --git a/views/thread.ejs b/views/thread.ejs
index 7c59c47..94aa2df 100644
--- a/views/thread.ejs
+++ b/views/thread.ejs
@@ -4,88 +4,95 @@
 <%- include("extra/meta", {title: "Thread list!" }) %>
 
 
-<body style="text-align: center;">
+<body>
   <%- include("extra/navbar") %>
-
+<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
+    
   <link rel="stylesheet" href="/css/thread.css" />
   <% if (user){ %>
     <script type="module" src="/js/thread.js"></script>
   <% }%>
 
+      <div style="text-align:center;padding:8px">
+      <div class="title">İlk Forum</div>
+      <div class="date">
+        20/04/2000
+      </div>
+      </div>
+  <div class="thread">
+    <div class="left">
+      <img src="https://renk.gen.tr/images/acik-mavi-renk.jpg"/>
+      <div class="username">Tokmak</div>
+       <div class="date">
+        20/04/2000
+      </div>
+    </div>  
 
-  <h1 style="font-size: 35px;color: #4d18e6;" ><%= thread.title %></h1>
-  <h3  >View count: <%= thread.views %></h1>
+    <div class="content">
+    Merhaba ! Bu benim ilk yazım    Merhaba ! Bu benim ilk yazım
+    Merhaba ! Bu benim ilk yazım
+    Merhaba ! Bu benim ilk yazım
+    Merhaba ! Bu benim ilk yazım
+    Merhaba ! Bu benim ilk yazım
+    Merhaba ! Bu benim ilk yazım
+    Merhaba ! Bu benim ilk yazım
+  
+    </div>
+  <div class="dots" onclick="dots()">
+<i class='bx bx-dots-horizontal-rounded' ></i>
+  </div>
+<div class="dots-menu">
+    <a>Delete</a>
+    <a>Edit</a>
+      
+    </div>
 
-  <h2 style="display:inline;">By <a href="<%='/users/' + thread.author.id %>"> <%= thread.author.name %></a>
-    <img class="circle" src="<%=thread.author.avatar %>">
-  </h2>
-
-  <% if (user && !thread.deleted){ %>
-
-    <a onclick="delete_thread('<%= thread.id %>' )" value=style="display:inline;" >DELETE</a>
-    <a onclick="edit_thread('<%= thread.id %>')" style="display:inline;" >EDIT</a>
-  <% } else if (thread.deleted) { %>
-    <h3 style="display:inline;">This thread has been deleted</h3>
-    <a onclick="undelete_thread('<%= thread.id %>')" style="display:inline;" >UNDELETE</a>
-
-  <% }; %>
-
-
-        <hr>
-
-
-        <div id="messages" value="<%= thread.id %>">
-       
-            <% messages.filter(Boolean).forEach(message=>{ %>
-
-            <div class="message" id="message-<%= message.id %>">
     
-              <h3 style="float:right;"><%= new Date(message.time).toLocaleString() %> </h3>
-          
-              <h2>
-                <img class="circle" src="<%= message.author.avatar %>">
-                  <a href="/users/<%=message.author.id %>"><%=message.author.name %></a>:
-              </h2>
-          
-              <p><%= message.content%></p><br>
-              <div id="message-delete-<%=message.id %>">
-              
-                <% if (!message.deleted){ %>
-              
-                <a onclick="delete_message('<%=message.id %>');">DELETE</a>
-                <a onclick="edit_message('<%=message.id %>');">EDIT</a>
-                <% }else{ %>
-                  <h3 style="display:inline;">This message has been deleted</h3>
-            <a onclick="undelete_message('<%=message.id %>');">UNDELETE</a>
-                  <% } %>
+    <div class="likes">
+      <div>
+<i class='bx bx-like'></i> 5
+      </div>
+      <div>
+<i class='bx bx-dislike'></i> 30
+      </div>
+    </div>
+  </div>
 
-              </div>
-              <div style="float: right;">
-                  <h3 id="count<%=message.id %>" style="display:inline;"><%=message.reactCount %></h3>
-                  <a onclick="react('<%=message.id %>', 'like');">+🔼</a>
-                  <a onclick="react('<%=message.id %>', 'dislike');">-🔽</a>
-              </div>
-          </div>
-                      <% }); %>
+<div class="pagination">
+  <div class="back">
+    <i class='bx bxs-chevron-left'></i>
+  </div>
+  <div class="numbers">
+  <a class="number active" href="/deneme">1</a>
+  <a class="number" href="/deneme">2</a>
+  <a class="number" href="/deneme">3</a>
+  <a class="number" href="/deneme">4</a>
+  <a class="number" href="/deneme">5</a>
+  <a class="number" href="/deneme">6</a>
 
-        </div>
-
-        <hr>
+    
+  </div>
+ <div class="after">
+    <i class='bx bxs-chevron-right'></i>
+  </div>
+  
+</div>
+    
 
 
-        <form id="send">
-          <textarea rows="4" cols="133" name="content"></textarea>
-          <input name="threadID" type="hidden" value="<%= thread.id %>"></input>
+  <!-- ==== Dots Event ==== -->
 
-          <br>
-          <% if (user){ %>
-            <button type="submit">Send!</button>
-          <%} else {%>
-            <button disabled>Login for send</button>
-          <% }%>
 
-        </form>
+<script>
+function dots(){
+  var box= document.getElementsByClassName("dots-menu")[0];
+  box.classList.toggle("active")
+}
 
+
+</script>
+    
+    
  
         <script>
           document.getElementById("message-<%= scroll %>").scrollIntoView();
@@ -94,4 +101,4 @@
             <!-- BURAYA Bİ İLERİ BİR GERİ SAYFA BUTONU GELMEZ Mİ BE-->
 </body>
 
-</html>
\ No newline at end of file
+</html>