From 7577a9ea29d8e00f3466167264bb48fd0f95d29f Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 3 Apr 2017 21:39:14 -0700 Subject: [PATCH 01/17] Fix packer logo color --- website/source/assets/stylesheets/_logos.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/source/assets/stylesheets/_logos.scss b/website/source/assets/stylesheets/_logos.scss index 811cf2175..5ce5987e3 100644 --- a/website/source/assets/stylesheets/_logos.scss +++ b/website/source/assets/stylesheets/_logos.scss @@ -8,12 +8,12 @@ svg.logo { } path.p-front { - fill: #4DA7DD; + fill: $packer-blue; opacity: 1.0; } path.p-back { - fill: #3192D0; + fill: $packer-blue-dark; opacity: 1.0; } } From 2e6bc21594acbf068ea658b70394deb6081541ca Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 3 Apr 2017 22:13:06 -0700 Subject: [PATCH 02/17] padding, compensate for Klavika line-height alignment Optically centers text and gives the appearance of even padding --- website/source/assets/stylesheets/_home.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index 3ec38da1c..6fa6893e7 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -98,7 +98,7 @@ $baseline: 20px; font-weight: $font-weight-bold; line-height: 1; margin: 0; - padding: 5px; + padding: 7px 5px 5px 5px; letter-spacing: 0.05em; text-transform: uppercase; } From 21e906e74d08f97b66003922c34120e9e56567a6 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 3 Apr 2017 22:16:34 -0700 Subject: [PATCH 03/17] Make H2s black --- website/source/assets/stylesheets/_home.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index 6fa6893e7..b148d1b76 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -79,6 +79,7 @@ $baseline: 20px; letter-spacing: -0.02em; margin: 20px 0 10px 0; padding: 0; + color: $black; } p { From 0a48b94795436963e1b2049f06ce3703468b685b Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 3 Apr 2017 22:18:31 -0700 Subject: [PATCH 04/17] Higher contrast $body-copy-color --- website/source/assets/stylesheets/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss index bac625e0a..8b1c06b0e 100644 --- a/website/source/assets/stylesheets/_variables.scss +++ b/website/source/assets/stylesheets/_variables.scss @@ -1,7 +1,7 @@ // Colors $white: #FFFFFF; $black: #000000; -$gray-darker: #555555; +$gray-darker: #24292e; $packer-blue: #1DAEFF; $packer-blue-dark: #1D94DD; From 4a30dfa8827f89e4768aed26f7afa50beae3a680 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 3 Apr 2017 22:20:53 -0700 Subject: [PATCH 05/17] Bump body font-size from 15 to 16px --- website/source/assets/stylesheets/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss index 8b1c06b0e..a007bbb04 100644 --- a/website/source/assets/stylesheets/_variables.scss +++ b/website/source/assets/stylesheets/_variables.scss @@ -14,7 +14,7 @@ $vault-blue: #00ABE0; $font-family-klavika: 'klavika-web', 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-monospace: 'Menlo', 'Monaco', 'Consolas', "Courier New", monospace; -$font-size: 15px; +$font-size: 16px; $font-weight-reg: 400; $font-weight-bold: 600; From bce788ea9e40c5e23dc1bc335bd9d7214f56d218 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Tue, 4 Apr 2017 14:28:04 -0700 Subject: [PATCH 06/17] Optically center button text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Klavika has an em box that sits in such a way that it always looks a few pixels toward the top. This fixed it optically. It’s ugly, I know. --- website/source/assets/stylesheets/_buttons.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_buttons.scss b/website/source/assets/stylesheets/_buttons.scss index e1037e818..ecbf41d20 100644 --- a/website/source/assets/stylesheets/_buttons.scss +++ b/website/source/assets/stylesheets/_buttons.scss @@ -9,7 +9,7 @@ font-weight: $button-font-weight; letter-spacing: 1px; margin-bottom: 4px; - padding: 10px 30px; + padding: 12px 30px 10px 30px; text-transform: uppercase; text-decoration: none; From 57fc700baa7e097e63a59574f68688f5e462bb88 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Tue, 4 Apr 2017 15:41:45 -0700 Subject: [PATCH 07/17] full-bleed responsive hero --- website/source/assets/stylesheets/_home.scss | 36 ++++++++++++++++++-- website/source/index.html.erb | 6 ++-- 2 files changed, 35 insertions(+), 7 deletions(-) diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index b148d1b76..1e9934e34 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -45,12 +45,42 @@ $baseline: 20px; } header { - .hero { - margin: 140px auto 160px auto; + display: flex; + flex-direction: row; + background: url('../images/hero-image.svg') no-repeat; + + @media (max-width: 991px) { + align-items: flex-end; + padding-top: 60%; + background-size: 80%; + background-position: top right; text-align: center; + } + + @media (min-width: 992px) { + height: 400px; + text-align: left; + align-items: center; + background-size: 50%; + background-position: right; + } + + @media (min-width: 1280px) { + height: 700px; + } + + @media (min-width: 1800px) { + background-size: 1054px 700px; + } + + .hero { + h1 { + font-weight: $font-weight-bold; + color: $black; + } .button { - margin: 5px; + margin: 5px 5px 5px 2px; @media (max-width: 768px) { display: block; diff --git a/website/source/index.html.erb b/website/source/index.html.erb index 57056ef28..8f90761ac 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -8,7 +8,7 @@ description: |-
- <%= inline_svg "logo-text.svg", height: 120, class: "logo" %> +

Build Automated Machine Images @@ -17,9 +17,7 @@ description: |- Get Started Download <%= latest_version %>

-
- <%= inline_svg "hero-image.svg" %> -
+
From d6e78c75195ace8af771142a26ac854e4a1b2714 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Wed, 5 Apr 2017 19:56:46 -0700 Subject: [PATCH 08/17] Tweaks to hero media queries --- website/source/assets/stylesheets/_home.scss | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index 1e9934e34..7c242d27e 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -66,11 +66,7 @@ $baseline: 20px; } @media (min-width: 1280px) { - height: 700px; - } - - @media (min-width: 1800px) { - background-size: 1054px 700px; + height: 600px; } .hero { From bb4eecc443b1cf72ba23e4d67cd21df95ffcc2ce Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Wed, 5 Apr 2017 19:57:07 -0700 Subject: [PATCH 09/17] Tweak drop shadow on button --- website/source/assets/stylesheets/_buttons.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_buttons.scss b/website/source/assets/stylesheets/_buttons.scss index ecbf41d20..f630b7073 100644 --- a/website/source/assets/stylesheets/_buttons.scss +++ b/website/source/assets/stylesheets/_buttons.scss @@ -1,7 +1,7 @@ .button { background: $button-background; border: 1px solid $button-font-color; - box-shadow: 3px 4px 0 rgba(0,0,0,0.1); + box-shadow: 4px 4px 0 rgba(0,0,0,0.07); color: $button-font-color; display: inline-block; font-family: $button-font-family; From 1adb86506642feb82ec93f51b772c663ee4dd98b Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Fri, 7 Apr 2017 16:29:53 -0700 Subject: [PATCH 10/17] Revert "Bump body font-size from 15 to 16px" This reverts commit 4a30dfa8827f89e4768aed26f7afa50beae3a680. --- website/source/assets/stylesheets/_variables.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss index a007bbb04..8b1c06b0e 100644 --- a/website/source/assets/stylesheets/_variables.scss +++ b/website/source/assets/stylesheets/_variables.scss @@ -14,7 +14,7 @@ $vault-blue: #00ABE0; $font-family-klavika: 'klavika-web', 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-open-sans: 'Open Sans', "Helvetica Neue", Helvetica, Arial, sans-serif; $font-family-monospace: 'Menlo', 'Monaco', 'Consolas', "Courier New", monospace; -$font-size: 16px; +$font-size: 15px; $font-weight-reg: 400; $font-weight-bold: 600; From 9d78778f4626a40409ec19ad1a9d0c540329f993 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 10 Apr 2017 10:51:08 -0700 Subject: [PATCH 11/17] Nav back to 555 gray to match the other sites --- website/source/assets/stylesheets/_variables.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss index 8b1c06b0e..6fbd0d05e 100644 --- a/website/source/assets/stylesheets/_variables.scss +++ b/website/source/assets/stylesheets/_variables.scss @@ -1,6 +1,7 @@ // Colors $white: #FFFFFF; $black: #000000; +$gray: #555555; $gray-darker: #24292e; $packer-blue: #1DAEFF; @@ -24,7 +25,7 @@ $body-link-color: $packer-blue; // Home $home-header-background-color: transparent; -$home-header-link-color: $gray-darker; +$home-header-link-color: $gray; $home-header-link-color-hover: $black; // Sidebar From b8306a373398a7061eaf3cf155eddb7705ff7c06 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 10 Apr 2017 11:08:24 -0700 Subject: [PATCH 12/17] Revert "Merge branch 'website-post-update-revisions-full-bleed' into website-post-update-revisions" This reverts commit 756e43617eacd207c14d521edaa4b66183312318, reversing changes made to bce788ea9e40c5e23dc1bc335bd9d7214f56d218. --- .../source/assets/stylesheets/_buttons.scss | 2 +- website/source/assets/stylesheets/_home.scss | 32 ++----------------- website/source/index.html.erb | 6 ++-- 3 files changed, 8 insertions(+), 32 deletions(-) diff --git a/website/source/assets/stylesheets/_buttons.scss b/website/source/assets/stylesheets/_buttons.scss index f630b7073..ecbf41d20 100644 --- a/website/source/assets/stylesheets/_buttons.scss +++ b/website/source/assets/stylesheets/_buttons.scss @@ -1,7 +1,7 @@ .button { background: $button-background; border: 1px solid $button-font-color; - box-shadow: 4px 4px 0 rgba(0,0,0,0.07); + box-shadow: 3px 4px 0 rgba(0,0,0,0.1); color: $button-font-color; display: inline-block; font-family: $button-font-family; diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index 7c242d27e..b148d1b76 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -45,38 +45,12 @@ $baseline: 20px; } header { - display: flex; - flex-direction: row; - background: url('../images/hero-image.svg') no-repeat; - - @media (max-width: 991px) { - align-items: flex-end; - padding-top: 60%; - background-size: 80%; - background-position: top right; - text-align: center; - } - - @media (min-width: 992px) { - height: 400px; - text-align: left; - align-items: center; - background-size: 50%; - background-position: right; - } - - @media (min-width: 1280px) { - height: 600px; - } - .hero { - h1 { - font-weight: $font-weight-bold; - color: $black; - } + margin: 140px auto 160px auto; + text-align: center; .button { - margin: 5px 5px 5px 2px; + margin: 5px; @media (max-width: 768px) { display: block; diff --git a/website/source/index.html.erb b/website/source/index.html.erb index 8f90761ac..57056ef28 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -8,7 +8,7 @@ description: |-
- + <%= inline_svg "logo-text.svg", height: 120, class: "logo" %>

Build Automated Machine Images @@ -17,7 +17,9 @@ description: |- Get Started Download <%= latest_version %>

- +
+ <%= inline_svg "hero-image.svg" %> +
From c75e70b522a084ed1ece6bba16d3a7d0d1d5577b Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 10 Apr 2017 11:11:29 -0700 Subject: [PATCH 13/17] Make hero match vagrant and vault's layout, remove graphic --- website/source/index.html.erb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/website/source/index.html.erb b/website/source/index.html.erb index 57056ef28..e83370182 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -7,7 +7,7 @@ description: |-
-
+
<%= inline_svg "logo-text.svg", height: 120, class: "logo" %>

@@ -17,9 +17,6 @@ description: |- Get Started Download <%= latest_version %>

-
- <%= inline_svg "hero-image.svg" %> -
From 09aff81db7db9498405e412f481a002b771247c7 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Mon, 10 Apr 2017 11:30:46 -0700 Subject: [PATCH 14/17] re-declare shadow styles after revert --- website/source/assets/stylesheets/_buttons.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/assets/stylesheets/_buttons.scss b/website/source/assets/stylesheets/_buttons.scss index ecbf41d20..ad6a3ee93 100644 --- a/website/source/assets/stylesheets/_buttons.scss +++ b/website/source/assets/stylesheets/_buttons.scss @@ -1,7 +1,7 @@ .button { background: $button-background; border: 1px solid $button-font-color; - box-shadow: 3px 4px 0 rgba(0,0,0,0.1); + box-shadow: 4px 4px 0 rgba(0,0,0,0.1); color: $button-font-color; display: inline-block; font-family: $button-font-family; From 5594c3d1d75445d575d8b164f024aae1654d8a5f Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Tue, 11 Apr 2017 11:22:15 -0700 Subject: [PATCH 15/17] Use brand-compliant, full color logos --- .../source/assets/images/integrations/aws.svg | 175 ++++---------- .../assets/images/integrations/azure.svg | 227 +++++++++++------- .../images/integrations/digitalocean.svg | 41 ++++ .../assets/images/integrations/docker.svg | 43 +++- .../images/integrations/google-cloud.svg | 69 ++++-- .../assets/images/integrations/vmware.svg | 35 +-- website/source/assets/stylesheets/_home.scss | 5 + website/source/index.html.erb | 2 +- 8 files changed, 321 insertions(+), 276 deletions(-) create mode 100644 website/source/assets/images/integrations/digitalocean.svg diff --git a/website/source/assets/images/integrations/aws.svg b/website/source/assets/images/integrations/aws.svg index cb42678c3..cf8026b8f 100644 --- a/website/source/assets/images/integrations/aws.svg +++ b/website/source/assets/images/integrations/aws.svg @@ -1,137 +1,46 @@ - - - - - - - - - - - - - - - - - + + + + Created with Sketch. + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website/source/assets/images/integrations/azure.svg b/website/source/assets/images/integrations/azure.svg index b44d5a4cc..3d5f1f534 100644 --- a/website/source/assets/images/integrations/azure.svg +++ b/website/source/assets/images/integrations/azure.svg @@ -1,105 +1,156 @@ - + + + + Created with Sketch. - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - - + + + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - - + + + + + + + + + + + - - - - - - + + + + + + + + + + - - - - - - + + + + + + + + + + diff --git a/website/source/assets/images/integrations/digitalocean.svg b/website/source/assets/images/integrations/digitalocean.svg new file mode 100644 index 000000000..776bed17a --- /dev/null +++ b/website/source/assets/images/integrations/digitalocean.svg @@ -0,0 +1,41 @@ + + + + Created with Sketch. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website/source/assets/images/integrations/docker.svg b/website/source/assets/images/integrations/docker.svg index aeafda82c..63d9659e0 100644 --- a/website/source/assets/images/integrations/docker.svg +++ b/website/source/assets/images/integrations/docker.svg @@ -1,23 +1,40 @@ - + + + + Created with Sketch. - + - - - - + + + + + - - + + - - - - - + + + + + + + + + + + + + + + + + + diff --git a/website/source/assets/images/integrations/google-cloud.svg b/website/source/assets/images/integrations/google-cloud.svg index 5e01ebcc6..84769cde0 100644 --- a/website/source/assets/images/integrations/google-cloud.svg +++ b/website/source/assets/images/integrations/google-cloud.svg @@ -1,32 +1,49 @@ - + + + + Created with Sketch. - + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/website/source/assets/images/integrations/vmware.svg b/website/source/assets/images/integrations/vmware.svg index 5d3d926a4..f9893530f 100644 --- a/website/source/assets/images/integrations/vmware.svg +++ b/website/source/assets/images/integrations/vmware.svg @@ -1,22 +1,27 @@ - + + + + Created with Sketch. - + - - - - - - - - - - - + + + + + + + + + + + + + - - + + diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss index b148d1b76..f3734c2ad 100644 --- a/website/source/assets/stylesheets/_home.scss +++ b/website/source/assets/stylesheets/_home.scss @@ -148,6 +148,11 @@ $baseline: 20px; height: 100px; width: 33.3%; background-color: $white; + padding: 5px; + + img { + max-width: 100%; + } } } } diff --git a/website/source/index.html.erb b/website/source/index.html.erb index e83370182..d5db63377 100644 --- a/website/source/index.html.erb +++ b/website/source/index.html.erb @@ -75,7 +75,7 @@ description: |- <%= image_tag("integrations/docker.svg", alt: "Docker") %>
- <%= image_tag("integrations/aws.svg", alt: "Virtual Box") %> + <%= image_tag("integrations/digitalocean.svg", alt: "Digital Ocean") %>
From ed0d8da97e48a166190089558802d58b755c37ab Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Thu, 13 Apr 2017 11:51:47 -0700 Subject: [PATCH 16/17] Remove unused hero image --- website/source/assets/images/hero-image.svg | 272 -------------------- 1 file changed, 272 deletions(-) delete mode 100644 website/source/assets/images/hero-image.svg diff --git a/website/source/assets/images/hero-image.svg b/website/source/assets/images/hero-image.svg deleted file mode 100644 index ab1f97b64..000000000 --- a/website/source/assets/images/hero-image.svg +++ /dev/null @@ -1,272 +0,0 @@ - - - - -Artboard 1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From c788d6f67a1a79f83705abe8390257a0a717cc79 Mon Sep 17 00:00:00 2001 From: Jason Costello Date: Thu, 13 Apr 2017 11:54:18 -0700 Subject: [PATCH 17/17] Clean up SVG markup --- website/source/assets/images/integrations/aws.svg | 3 +-- website/source/assets/images/integrations/azure.svg | 3 +-- website/source/assets/images/integrations/digitalocean.svg | 3 +-- website/source/assets/images/integrations/docker.svg | 3 +-- website/source/assets/images/integrations/google-cloud.svg | 3 +-- website/source/assets/images/integrations/vmware.svg | 3 +-- 6 files changed, 6 insertions(+), 12 deletions(-) diff --git a/website/source/assets/images/integrations/aws.svg b/website/source/assets/images/integrations/aws.svg index cf8026b8f..c1ba8bbfa 100644 --- a/website/source/assets/images/integrations/aws.svg +++ b/website/source/assets/images/integrations/aws.svg @@ -1,7 +1,6 @@ - - Created with Sketch. + Amazon Web Services Logo diff --git a/website/source/assets/images/integrations/azure.svg b/website/source/assets/images/integrations/azure.svg index 3d5f1f534..efa590881 100644 --- a/website/source/assets/images/integrations/azure.svg +++ b/website/source/assets/images/integrations/azure.svg @@ -1,7 +1,6 @@ - - Created with Sketch. + Microsoft Azure Logo diff --git a/website/source/assets/images/integrations/digitalocean.svg b/website/source/assets/images/integrations/digitalocean.svg index 776bed17a..4d9238010 100644 --- a/website/source/assets/images/integrations/digitalocean.svg +++ b/website/source/assets/images/integrations/digitalocean.svg @@ -1,7 +1,6 @@ - - Created with Sketch. + DigitalOcean Logo diff --git a/website/source/assets/images/integrations/docker.svg b/website/source/assets/images/integrations/docker.svg index 63d9659e0..3c12c93a0 100644 --- a/website/source/assets/images/integrations/docker.svg +++ b/website/source/assets/images/integrations/docker.svg @@ -1,7 +1,6 @@ - - Created with Sketch. + Docker Logo diff --git a/website/source/assets/images/integrations/google-cloud.svg b/website/source/assets/images/integrations/google-cloud.svg index 84769cde0..361ca9f04 100644 --- a/website/source/assets/images/integrations/google-cloud.svg +++ b/website/source/assets/images/integrations/google-cloud.svg @@ -1,7 +1,6 @@ - - Created with Sketch. + Google Cloud Services Logo diff --git a/website/source/assets/images/integrations/vmware.svg b/website/source/assets/images/integrations/vmware.svg index f9893530f..bb1085b3a 100644 --- a/website/source/assets/images/integrations/vmware.svg +++ b/website/source/assets/images/integrations/vmware.svg @@ -1,7 +1,6 @@ - - Created with Sketch. + VM Ware Logo