Add tabnav, dedicated auths view to RS service page

Includes a nicer view and illustration for when no auths exist yet
This commit is contained in:
2024-08-14 13:34:32 +02:00
parent 54b01dd282
commit 171b84ee81
7 changed files with 86 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
<section>
<div class="border-b border-gray-200">
<nav class="-mb-px flex" aria-label="Tabs">
<%= render TabnavLinkComponent.new(
name: "Info", path: services_storage_path,
active: current_page?(services_storage_path)
) %>
<%= render TabnavLinkComponent.new(
name: "Connected Apps", path: apps_services_storage_path,
active: current_page?(apps_services_storage_path)
) %>
</nav>
</div>
</section>