diff --git a/frontend/editor/public/locales/en-US/translation.toml b/frontend/editor/public/locales/en-US/translation.toml index 2daef44903..100604ac01 100644 --- a/frontend/editor/public/locales/en-US/translation.toml +++ b/frontend/editor/public/locales/en-US/translation.toml @@ -7962,6 +7962,7 @@ ariaLabel = "Welcome to Stirling PDF" badge = "Open-source" installEditor = "Install the Editor" inviteTeammates = "Invite teammates" +openInBrowser = "Open in browser" perks = "Free forever ยท Self-hostable" subtitle = "The world's most secure PDF Editor is free for teams of all sizes. Includes 60+ PDF operations and SSO." title = "Welcome to" diff --git a/frontend/editor/src/portal/components/WelcomeBanner.tsx b/frontend/editor/src/portal/components/WelcomeBanner.tsx index 8e9f71af29..ee64be1011 100644 --- a/frontend/editor/src/portal/components/WelcomeBanner.tsx +++ b/frontend/editor/src/portal/components/WelcomeBanner.tsx @@ -2,10 +2,12 @@ import type { ReactNode } from "react"; import { useTranslation } from "react-i18next"; import { Button } from "@app/ui"; import { useView } from "@portal/contexts/ViewContext"; +import { EDITOR_URL } from "@portal/auth/editorUrl"; import { DownloadIcon, UsersIcon, EditorIcon, + ExternalLinkIcon, SearchIcon, SourcesIcon, PoliciesIcon, @@ -156,13 +158,22 @@ export function WelcomeBanner({ footer }: WelcomeBannerProps) {
+