diff --git a/views/index.ejs b/views/index.ejs
index f4b61134ad2c7620427ecd790d586c5e45f64f53..cae6bd6e058de805c9077a83e88cb3821a9dfa02 100644
--- a/views/index.ejs
+++ b/views/index.ejs
@@ -1,13 +1,11 @@
 <!DOCTYPE html>
-<html lang="en">
+<html lang="th">
 <head>
-  <meta charset="UTF-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1.0">
-  <link rel="stylesheet" href="/css/style.css">
-  <title>Tour Website</title>
+    <meta charset="UTF-8">
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+    <title>ทัวร์ท่องเที่ยว</title>
 </head>
-<body>
-  <header>
+ <header>
     <h1>Welcome to Our Tour Website</h1>
     <nav>
       <a href="/">Home</a>
@@ -16,32 +14,14 @@
       <a href="/login">Login</a>
     </nav>
   </header>
-
-  <section class="tour-list">
-    
-    <h2>Available Tours</h2>
+<body>
+    <h1>แพ็กเกจทัวร์</h1>
     <ul>
-      <% tours.forEach(tour => { %>
-        <li class="tour-card">
-          <a href="/tour/<%= tour.id %>">
-            <div class="tour-card-img">
-              <img src="<%= tour.imageUrl %>" alt="<%= tour.name %>">
-            </div>
-            <div class="tour-card-info">
-              <h3><%= tour.name %></h3>
-              <p><%= tour.description %></p>
-              <div class="price">
-                <span><%= tour.price %> THB</span>
-              </div>
-            </div>
-          </a>
-        </li>
-      <% }) %>
+        <% tours.forEach(tour => { %>
+            <li>
+                <a href="/tour/<%= tour.id %>"><%= tour.name %></a> - <%= tour.price %> บาท
+            </li>
+        <% }) %>
     </ul>
-  </section>
-
-  <footer>
-    <p>&copy; 2025 Tour Website. All Rights Reserved.</p>
-  </footer>
 </body>
 </html>