Okay that's about everything

This commit is contained in:
benbot 2023-10-25 23:19:22 -04:00
parent 023ad47ae4
commit d094ff036f
19 changed files with 236 additions and 79 deletions

View file

@ -0,0 +1,13 @@
<.flash_group flash={@flash} />
<div class="grid grid-cols-3 m-10">
<%= for service <- @services do %>
<div class="card bg-base-100 shadow-xl">
<div class="card-body">
<h2 class="card-title"><%= service["name"] %></h2>
<div class="card-actions justify-start">
<button class="btn btn-xs btn-secondary">Delete</button>
</div>
</div>
</div>
<% end %>
</div>