diff --git a/app/views/projects/index.html.erb b/app/views/projects/index.html.erb
index 6951f83..507054a 100644
--- a/app/views/projects/index.html.erb
+++ b/app/views/projects/index.html.erb
@@ -2,12 +2,13 @@
<% @projects.each do |project| %>
-
-
- <%= link_to "Destroy", project_path(project), data: {
- turbo_method: :delete,
- turbo_confirm: "Are you sure?"
- } %>
+ - <%= link_to project.project_name, project_path(project) %>
+
+ <%= link_to "Destroy", project_path(project), data: {
+ turbo_method: :delete,
+ turbo_confirm: "Are you sure?"
+ } %>
+
<% end %>