diff --git a/lib/livebook_web/live/hub/new_live.ex b/lib/livebook_web/live/hub/new_live.ex index 5486d45f3..db4e15034 100644 --- a/lib/livebook_web/live/hub/new_live.ex +++ b/lib/livebook_web/live/hub/new_live.ex @@ -89,13 +89,9 @@ defmodule LivebookWeb.Hub.NewLive do - <.card_item id="enterprise" selected={@selected_type} title="Livebook Enterprise"> + <.card_item id="enterprise" selected={@selected_type} title="Livebook Teams"> <:logo> - Livebook Enterprise logo + Livebook Teams logo <:headline> Control access, manage secrets, and deploy notebooks within your team. diff --git a/static/images/enterprise.png b/static/images/enterprise.png deleted file mode 100644 index ae2f0f657..000000000 Binary files a/static/images/enterprise.png and /dev/null differ diff --git a/static/images/teams.png b/static/images/teams.png new file mode 100644 index 000000000..8c2f61c4b Binary files /dev/null and b/static/images/teams.png differ diff --git a/test/livebook_web/live/hub/new_live_test.exs b/test/livebook_web/live/hub/new_live_test.exs index 0e6ba46aa..f4ea3c8e8 100644 --- a/test/livebook_web/live/hub/new_live_test.exs +++ b/test/livebook_web/live/hub/new_live_test.exs @@ -9,7 +9,7 @@ defmodule LivebookWeb.Hub.NewLiveTest do {:ok, _view, html} = live(conn, ~p"/hub") assert html =~ "Fly" - assert html =~ "Livebook Enterprise" + assert html =~ "Livebook Teams" end describe "fly" do