Index: src/main/java/mk/ukim/finki/easyfood/service/impl/OrderServiceImpl.java
===================================================================
--- src/main/java/mk/ukim/finki/easyfood/service/impl/OrderServiceImpl.java	(revision cffbecf2df02ed2be14abcb5c74eaef739080c68)
+++ src/main/java/mk/ukim/finki/easyfood/service/impl/OrderServiceImpl.java	(revision 4d84625035f391661c0458ff24325e1ef4ec1130)
@@ -41,7 +41,6 @@
     @Override
     public List<Order> findAllByUserId(Long id) {
-        return this.orderRepository.findAllById(id);
+        return this.orderRepository.findByCustomerIdOrderByOrderDateDesc(id);
     }
-
 
     public void saveOrderItem(OrderItems orderItem) {
Index: src/main/resources/templates/checkout.html
===================================================================
--- src/main/resources/templates/checkout.html	(revision cffbecf2df02ed2be14abcb5c74eaef739080c68)
+++ src/main/resources/templates/checkout.html	(revision 4d84625035f391661c0458ff24325e1ef4ec1130)
@@ -66,5 +66,5 @@
 <nav class="navbar bg-body-tertiary shadow-sm">
     <div class="container-fluid">
-        <a class="navbar-brand d-flex align-items-center" href="#">
+        <a class="navbar-brand d-flex align-items-center" href="/home">
             <img src="/images/logo.JPG" alt="Logo" height="90" class="d-inline-block align-text-top">
         </a>
Index: src/main/resources/templates/main_pg.html
===================================================================
--- src/main/resources/templates/main_pg.html	(revision cffbecf2df02ed2be14abcb5c74eaef739080c68)
+++ src/main/resources/templates/main_pg.html	(revision 4d84625035f391661c0458ff24325e1ef4ec1130)
@@ -116,5 +116,5 @@
 <nav class="navbar bg-body-tertiary shadow-sm">
     <div class="container-fluid">
-        <a class="navbar-brand d-flex align-items-center" href="#">
+        <a class="navbar-brand d-flex align-items-center" href="/home">
             <img src="/images/logo.JPG" alt="Logo" height="90" class="d-inline-block align-text-top">
         </a>
Index: src/main/resources/templates/order_confirmation.html
===================================================================
--- src/main/resources/templates/order_confirmation.html	(revision cffbecf2df02ed2be14abcb5c74eaef739080c68)
+++ src/main/resources/templates/order_confirmation.html	(revision 4d84625035f391661c0458ff24325e1ef4ec1130)
@@ -100,5 +100,5 @@
 <nav class="navbar bg-body-tertiary shadow-sm">
     <div class="container-fluid">
-        <a class="navbar-brand d-flex align-items-center" href="#">
+        <a class="navbar-brand d-flex align-items-center" href="/home">
             <img src="/images/logo.JPG" alt="Logo" height="90" class="d-inline-block align-text-top">
         </a>
Index: src/main/resources/templates/profile.html
===================================================================
--- src/main/resources/templates/profile.html	(revision cffbecf2df02ed2be14abcb5c74eaef739080c68)
+++ src/main/resources/templates/profile.html	(revision 4d84625035f391661c0458ff24325e1ef4ec1130)
@@ -202,4 +202,22 @@
     </div>
 
+    <!--    <div id="orders" class="card my-4 border-0 shadow">-->
+    <!--        <div class="card-header">-->
+    <!--            <h2 class="h4 mb-0">My Orders</h2>-->
+    <!--        </div>-->
+    <!--        <div class="card-body">-->
+    <!--            <div th:if="${not #lists.isEmpty(orders)}">-->
+    <!--                <ul class="list-group list-group-flush">-->
+    <!--                    <li class="list-group-item" th:each="order : ${orders}">-->
+    <!--                        <p class="mb-1"><strong>Order ID:</strong> <span th:text="${order.id}"></span></p>-->
+    <!--                        <p class="mb-0"><strong>Order Date:</strong> <span th:text="${order.getOrderDate()}"></span></p>-->
+    <!--                    </li>-->
+    <!--                </ul>-->
+    <!--            </div>-->
+    <!--            <div th:unless="${not #lists.isEmpty(orders)}">-->
+    <!--                <p class="text-muted text-center py-3">You have no past orders.</p>-->
+    <!--            </div>-->
+    <!--        </div>-->
+    <!--    </div>-->
     <div id="orders" class="card my-4 border-0 shadow">
         <div class="card-header">
@@ -210,6 +228,18 @@
                 <ul class="list-group list-group-flush">
                     <li class="list-group-item" th:each="order : ${orders}">
-                        <p class="mb-1"><strong>Order ID:</strong> <span th:text="${order.id}"></span></p>
-                        <p class="mb-0"><strong>Order Date:</strong> <span th:text="${order.getOrderDate()}"></span></p>
+                        <p class="mb-1">
+                            <strong>Order ID:</strong> <span th:text="${order.id}"></span>
+                        </p>
+                        <p class="mb-1">
+                            <strong>Order Date:</strong> <span
+                                th:text="${order.orderDate}"></span>
+                        </p>
+                        <p class="mb-1">
+                            <strong>Order Total:</strong> <span
+                                th:text="${order.getTotalAmount()}"></span>
+                        </p>
+                        <p class="mb-0">
+                            <strong>Restaurant:</strong> <span th:text="${order.getRestaurantName()}"></span>
+                        </p>
                     </li>
                 </ul>
