diff --git a/frontend/public/index.html b/frontend/public/index.html index 2664902290..c661f9de7b 100644 --- a/frontend/public/index.html +++ b/frontend/public/index.html @@ -34,6 +34,7 @@ data-modal-image="/logo-notext.svg" data-modal-z-index="1100" data-modal-title="Ask me anything" + data-font-family='metro-web, Metro, -apple-system, "system-ui", "Segoe UI", Roboto' data-project-logo="/assets/images/kapa.svg" data-modal-disclaimer="This is a custom LLM for dstack with access to Documentation, API references and GitHub issues. This feature is experimental - Give it a try!" data-user-analytics-fingerprint-enabled="true" diff --git a/frontend/src/App/Login/LoginByGithub/index.tsx b/frontend/src/App/Login/LoginByGithub/index.tsx index 5843c2823a..1263efb70c 100644 --- a/frontend/src/App/Login/LoginByGithub/index.tsx +++ b/frontend/src/App/Login/LoginByGithub/index.tsx @@ -193,10 +193,10 @@ function HeroHeader() { function ProductOverview() { return (
-
- Overview -
+
+ Overview +
dstack is an open-source container orchestrator that lets ML teams easily manage @@ -316,7 +316,7 @@ function ProductOverview() { - Want to learn more about dstack? Check out the{' '} + Want to learn more about dstack? Check out the{' '} documentation diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx index 1f92f308cb..f2ec642051 100644 --- a/frontend/src/index.tsx +++ b/frontend/src/index.tsx @@ -19,7 +19,11 @@ const container = document.getElementById('root'); const theme: Theme = { tokens: { - fontFamilyBase: "'Roboto', 'Open Sans', 'Helvetica Neue', Arial, sans-serif", + fontFamilyBase: 'metro-web, Metro, -apple-system, "system-ui", "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif', + fontSizeHeadingS: '15px', + fontSizeHeadingL: '19px', + fontSizeHeadingXl: '22px', + fontSizeDisplayL: '40px', }, };