diff --git a/site/src/App.tsx b/site/src/App.tsx index 35e1ed0..4e2249a 100644 --- a/site/src/App.tsx +++ b/site/src/App.tsx @@ -35,7 +35,7 @@ const copy: Record }; workspace: { kicker: string; title: string; subtitle: string; items: Array<{ title: string; subtitle: string }> }; video: { kicker: string; title: string; body: string }; - download: { kicker: string; title: string; package: string; api: string; sha: string; latest: string; source: string }; + download: { kicker: string; title: string; package: string; api: string; sha: string; latest: string; source: string; star: string }; trust: { kicker: string; items: string[] }; footer: { tagline: string; multica: string; github: string; download: string }; }> = { @@ -87,7 +87,7 @@ const copy: Record{t.download.latest} {t.download.source} +

{t.download.star}

diff --git a/site/src/styles.css b/site/src/styles.css index 094c962..7bd374c 100644 --- a/site/src/styles.css +++ b/site/src/styles.css @@ -884,3 +884,11 @@ pre { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); } } + +.star-hint { + margin-top: 20px; + font-size: 15px; + color: var(--muted); + text-align: center; + font-weight: 600; +}