Change copy to mention Livebook teams (#2069)

This commit is contained in:
Hugo Baraúna 2023-07-13 14:01:18 -03:00 committed by GitHub
parent e1114d3e29
commit c16ba7e762
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 15 additions and 27 deletions

View file

@ -41,39 +41,27 @@ defmodule LivebookWeb.Hub.NewLive do
<LayoutHelpers.layout current_page="/hub" current_user={@current_user} saved_hubs={@saved_hubs}> <LayoutHelpers.layout current_page="/hub" current_user={@current_user} saved_hubs={@saved_hubs}>
<div class="p-4 md:px-12 md:py-7 max-w-screen-md mx-auto space-y-6"> <div class="p-4 md:px-12 md:py-7 max-w-screen-md mx-auto space-y-6">
<div> <div>
<LayoutHelpers.title text="Hubs are coming soon!" /> <LayoutHelpers.title text="Livebook Teams is coming soon!" />
<p class="mt-4 text-gray-700"> <p class="mt-4 text-gray-700">
Deploy applications, share secrets, templates, and more with Livebook Hubs. Livebook Teams will amplify Livebook with features designed for teams and businesses.
</p> </p>
</div> </div>
<p class="text-gray-700"> <p class="text-gray-700">
Each Livebook user has their own personal Hub and soon they will be able to deploy It will allow you to share notebooks, manage secrets, and deploy Livebook apps within your organization.
their personal notebooks to
<a
class="font-medium underline text-gray-900 hover:no-underline"
href="https://fly.io/"
target="_blank"
>
Fly.io
</a>
and <a
class="font-medium underline text-gray-900 hover:no-underline"
href="https://huggingface.co/"
target="_blank"
>Hugging Face</a>.
</p> </p>
<p class="text-gray-700"> <p class="text-gray-700">
We are also working on <span class="font-bold">Livebook Teams</span>, which were The product is still in development. We want to get feedback from beta users and understand
designed from the ground up to deploy notebooks within your organization. their use cases before the public launch.
<span class="font-bold">Livebook Teams</span> </p>
runs on your own infrastructure <p class="text-gray-700">
to provide essential features for secure collaboration between team members, <a
such as digital signing of notebooks, safe sharing of secrets, and more.
To learn more, <a
class="font-medium underline text-gray-900 hover:no-underline" class="font-medium underline text-gray-900 hover:no-underline"
href="https://docs.google.com/forms/d/e/1FAIpQLScDfvUqT4f_s95dqNGyoXwVMD_Vl059jT6r5MPgXB99XVMCuw/viewform?usp=sf_link" href="https://livebook.dev/teams"
target="_blank" target="_blank"
>get in touch</a>! >
Learn more about Livebook Teams
</a>
and join the beta program.
</p> </p>
<p class="text-gray-700"> <p class="text-gray-700">
- The Livebook crew - The Livebook crew

View file

@ -220,7 +220,7 @@ defmodule LivebookWeb.LayoutHelpers do
<% end %> <% end %>
<% end %> <% end %>
<.sidebar_link title="Add Hub" icon="add-line" to={~p"/hub"} current={@current_page} /> <.sidebar_link title="Add Teams" icon="add-line" to={~p"/hub"} current={@current_page} />
</div> </div>
</div> </div>
""" """

View file

@ -208,7 +208,7 @@ defmodule LivebookWeb.HomeLiveTest do
test "renders sidebar section", %{conn: conn} do test "renders sidebar section", %{conn: conn} do
{:ok, _view, html} = live(conn, ~p"/") {:ok, _view, html} = live(conn, ~p"/")
assert html =~ "HUBS" assert html =~ "HUBS"
assert html =~ "Add Hub" assert html =~ "Add Teams"
end end
test "renders sidebar persisted hubs", %{conn: conn} do test "renders sidebar persisted hubs", %{conn: conn} do