diff --git a/lib/livebook_web/live/settings_live.ex b/lib/livebook_web/live/settings_live.ex
index 76fc25ce2..077769697 100644
--- a/lib/livebook_web/live/settings_live.ex
+++ b/lib/livebook_web/live/settings_live.ex
@@ -52,13 +52,15 @@ defmodule LivebookWeb.SettingsLive do
- <.labeled_text label="Version" text={Mix.Project.config[:version]} />
- <.labeled_text label="Elixir" text={System.version()} />
+ <.labeled_text label="Livebook" text={"v#{Application.spec(:livebook, :vsn)}"} />
+ <.labeled_text label="Elixir" text={"v#{System.version()}"} />
- <%= live_redirect "Dashboard",
- to: Routes.live_dashboard_path(@socket, :home),
- class: "button-base button-blue"%>
+ <%= live_redirect to: Routes.live_dashboard_path(@socket, :home),
+ class: "button-base button-outlined-gray" do %>
+ <.remix_icon icon="dashboard-2-line" class="align-middle mr-1" />
+
Open dashboard
+ <% end %>