From 9deaadba23c49503d26e9ee0cc5322d8872e7288 Mon Sep 17 00:00:00 2001 From: changli0617 <39781496+changli0617@users.noreply.github.com> Date: Wed, 9 Dec 2020 18:32:17 -0800 Subject: [PATCH 1/3] Update index.jsx Replace a value card to show case "2 million container challenge" --- website/pages/home/index.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/pages/home/index.jsx b/website/pages/home/index.jsx index f1daa512c..f0f24ea46 100644 --- a/website/pages/home/index.jsx +++ b/website/pages/home/index.jsx @@ -57,9 +57,9 @@ export default function Homepage() { icon: require('./img/why-nomad/federation.svg'), }, { - title: 'Multi-Cloud with Ease', + title: 'Deploy and Scale with Ease', content: - 'One single unified workflow for deploying to bare metal or cloud environments. Enable multi-cloud applications with ease.', + 'Deploy to bare metal with the same ease as in cloud environments. Scale globally without complexity. Read the 2 Million Container Challenge.', icon: require('./img/why-nomad/servers.svg'), }, { From 916c7f65d06de535f9ec66922334877981a95b15 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Thu, 10 Dec 2020 12:04:11 -0800 Subject: [PATCH 2/3] Fix mismatched quotes in JSX strings --- website/pages/home/index.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/pages/home/index.jsx b/website/pages/home/index.jsx index f0f24ea46..c1c229e55 100644 --- a/website/pages/home/index.jsx +++ b/website/pages/home/index.jsx @@ -59,7 +59,7 @@ export default function Homepage() { { title: 'Deploy and Scale with Ease', content: - 'Deploy to bare metal with the same ease as in cloud environments. Scale globally without complexity. Read the 2 Million Container Challenge.', + 'Deploy to bare metal with the same ease as in cloud environments. Scale globally without complexity. Read the 2 Million Container Challenge.', icon: require('./img/why-nomad/servers.svg'), }, { From 2e4f11c29e258a48403630305263907c15c14547 Mon Sep 17 00:00:00 2001 From: Michael Lange Date: Thu, 10 Dec 2020 12:05:17 -0800 Subject: [PATCH 3/3] Change the features-list component to support arbitrary markup in the content field --- website/components/features-list/index.jsx | 5 ++++- website/components/features-list/style.css | 4 ++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/website/components/features-list/index.jsx b/website/components/features-list/index.jsx index cc5e75b0b..12768818e 100644 --- a/website/components/features-list/index.jsx +++ b/website/components/features-list/index.jsx @@ -14,7 +14,10 @@ export default function FeaturesList({ title, items, intro }) {

{title}

-

{content}

+

))} diff --git a/website/components/features-list/style.css b/website/components/features-list/style.css index 47705bfbd..cf4d8752b 100644 --- a/website/components/features-list/style.css +++ b/website/components/features-list/style.css @@ -42,6 +42,10 @@ margin: 0; } + & a { + color: var(--nomad); + } + & .item-icon img { width: 72px; height: 72px;