diff --git a/saas/app/views/devices/index.html.erb b/saas/app/views/devices/index.html.erb
index 9e467731a..b9a3bfb35 100644
--- a/saas/app/views/devices/index.html.erb
+++ b/saas/app/views/devices/index.html.erb
@@ -1,16 +1,30 @@
-
Registered Devices
+<% @page_title = "Registered devices" %>
-<% if @devices.any? %>
-
- <% @devices.each do |device| %>
- -
- <%= device.name || "Unnamed device" %>
- (<%= device.platform == "apple" ? "iOS" : "Android" %>)
- Added <%= time_ago_in_words(device.created_at) %> ago
- <%= button_to "Remove", saas.device_path(device), method: :delete, data: { confirm: "Remove this device?" } %>
-
- <% end %>
-
-<% else %>
- No devices registered. Install the mobile app to receive push notifications.
-<% end %>
+
+ <% if @devices.any? %>
+
+ Registered devices
+
+
+ <% @devices.each do |device| %>
+ -
+
+
+ <%= device.name || "Unnamed device" %>
+ (<%= device.platform == "apple" ? "iOS" : "Android" %>)
+
+ <%= tag.time "Added #{time_ago_in_words(device.created_at)} ago", datetime: device.created_at.to_i, class: "txt-subtle txt-x-small" %>
+
+ <%= button_to "Remove", saas.device_path(device), method: :delete, class: "btn txt-small", data: { confirm: "Remove this device?" }, form: { class: "flex-item-no-shrink" } %>
+
+ <% end %>
+
+ <% else %>
+ No devices registered
+ Install the mobile app to receive push notifications.
+ <% end %>
+
+ <%= link_to session_menu_path, class: "btn center txt-small margin-block-start hide-on-native", data: { turbo_prefetch: false } do %>
+ Your Fizzy accounts
+ <% end %>
+