Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions pkg/cmd/hello/hello.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,10 @@ func RunOnboarding(t *terminal.Terminal, user *entity.User, store HelloStore) er

s := "Hey " + GetFirstName(user.Name) + " 👋\n"

s += "\n\nI'm excited you installed NVIDIA Brev. Let's get you started!\n"
s += "\nbtw, reach out if you need anything"
s += t.Yellow("[email protected]")
s += "\n\nI'm excited you installed Brev. Let's get you started!\n"
s += "\nbtw, reach out if you need anything " + t.Yellow("[email protected]")

s += "\n\nNVIDIA Brev is a dev tool for creating and sharing GPU accelerated instances"
s += "\n\nBrev is a dev tool for creating and sharing GPU accelerated instances"
s += "\nRun " + t.Green("brev ls") + " to see your instances 👇\n"

wg.Add(2)
Expand Down
Loading