diff --git a/apps/website/src/pages/GetStarted/get-started.tsx b/apps/website/src/pages/GetStarted/get-started.tsx index d1dfe5a4d..4b6d70074 100644 --- a/apps/website/src/pages/GetStarted/get-started.tsx +++ b/apps/website/src/pages/GetStarted/get-started.tsx @@ -14,7 +14,7 @@ export default function DownloadPage() { return ( <> -
+
Architecture: diff --git a/apps/website/src/pages/Home/index.css b/apps/website/src/pages/Home/index.css index 440fbb9eb..a06998a92 100644 --- a/apps/website/src/pages/Home/index.css +++ b/apps/website/src/pages/Home/index.css @@ -137,10 +137,35 @@ section.hero-section .additional-options a { } } -section:nth-of-type(2n+1) { +section.accented { background: linear-gradient(135deg, rgba(228, 123, 25, 0.08), rgba(79, 165, 43, 0.08)); } .benefits-container .card { padding: 1em; } + +section.final-cta { + text-align: center; + padding: 6em 0; +} + +section.final-cta h2 { + margin-bottom: 0; +} + +section.final-cta p { + color: var(--muted-color); +} + +section.final-cta .buttons { + display: flex; + align-items: center; + gap: 1em; + justify-content: center; + margin-top: 2em; +} + +section.final-cta .buttons .button { + padding: 0.75em 2em; +} \ No newline at end of file diff --git a/apps/website/src/pages/Home/index.tsx b/apps/website/src/pages/Home/index.tsx index 7ccff2b22..4b6f5b96a 100644 --- a/apps/website/src/pages/Home/index.tsx +++ b/apps/website/src/pages/Home/index.tsx @@ -19,6 +19,7 @@ export function Home() { + ); } @@ -48,8 +49,8 @@ function HeroSection() {
- See all download options -
+
+ ) +}