From c8d9103fa6b4bb59aa8178b765e399799469bca1 Mon Sep 17 00:00:00 2001 From: Arthur Emmanuel <86601468+ArthurEmma2@users.noreply.github.com> Date: Wed, 20 Sep 2023 21:31:38 +0000 Subject: [PATCH 01/16] Feat: Gpu tile added --- assets/images/svg/deploy-app.svg | 23 +++++ assets/images/svg/doc-svg.svg | 43 ++++++++++ assets/images/svg/gpu-svg.svg | 57 +++++++++++++ assets/images/svg/provider.svg | 55 ++++++++++++ assets/scss/layouts/_deploy.scss | 14 ++- assets/scss/layouts/_getstarted.scss | 122 ++++++++++++++++++++++++++- layouts/get-started/get-started.html | 40 ++++++--- 7 files changed, 340 insertions(+), 14 deletions(-) create mode 100644 assets/images/svg/deploy-app.svg create mode 100644 assets/images/svg/doc-svg.svg create mode 100644 assets/images/svg/gpu-svg.svg create mode 100644 assets/images/svg/provider.svg diff --git a/assets/images/svg/deploy-app.svg b/assets/images/svg/deploy-app.svg new file mode 100644 index 00000000..e2b39cf5 --- /dev/null +++ b/assets/images/svg/deploy-app.svg @@ -0,0 +1,23 @@ + diff --git a/assets/images/svg/doc-svg.svg b/assets/images/svg/doc-svg.svg new file mode 100644 index 00000000..3665d48c --- /dev/null +++ b/assets/images/svg/doc-svg.svg @@ -0,0 +1,43 @@ + diff --git a/assets/images/svg/gpu-svg.svg b/assets/images/svg/gpu-svg.svg new file mode 100644 index 00000000..2da81d36 --- /dev/null +++ b/assets/images/svg/gpu-svg.svg @@ -0,0 +1,57 @@ + diff --git a/assets/images/svg/provider.svg b/assets/images/svg/provider.svg new file mode 100644 index 00000000..b61b6fd6 --- /dev/null +++ b/assets/images/svg/provider.svg @@ -0,0 +1,55 @@ + diff --git a/assets/scss/layouts/_deploy.scss b/assets/scss/layouts/_deploy.scss index 2718e115..b29de973 100644 --- a/assets/scss/layouts/_deploy.scss +++ b/assets/scss/layouts/_deploy.scss @@ -387,6 +387,18 @@ @media (min-width: 447px) and (max-width: 767px) { .deploy-svg svg { - width: 300px; + width: 400px; } + + // .tab-content .console-resource-wrapper { + // display: flex; + // flex-direction: column; + // justify-content: center; + // align-items: center; + // } + + // .console-resource-header { + // margin: 40px auto; + // text-align: center; + // } } diff --git a/assets/scss/layouts/_getstarted.scss b/assets/scss/layouts/_getstarted.scss index 5fad93b1..f877371c 100644 --- a/assets/scss/layouts/_getstarted.scss +++ b/assets/scss/layouts/_getstarted.scss @@ -8,6 +8,13 @@ } .sub-pages-wrapper { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + margin-top: 40px; + grid-gap: 80px; +} + +.community-s-wrapper { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; @@ -23,7 +30,14 @@ black-dot { } .deploy-header, .provider-s-header, -.docs-s-header, +.docs-s-header { + width: 100%; + font-size: 24px; + font-style: normal; + font-weight: 700; + line-height: 32px; + margin: 10px 0; +} .insider-s-header, .validator-s-header, .ideas-s-header { @@ -51,6 +65,19 @@ black-dot { letter-spacing: 0.16px; } +.get-started-btn button { + width: 586px; + height: 45px; + padding: 10px 20px 10px 20px; + border-radius: 8px; + text-align: center; + outline: none; + border: none; + font-weight: 700; + font-size: 14px; + transition: 0.3s ease; + color: #000; +} .get-s-btn button { width: 380px; height: 45px; @@ -83,6 +110,10 @@ black-dot { background: #ccc; color: #1d2d35; } +.get-started-btn button:hover { + background: #ccc; + color: #1d2d35; +} .get-s-btn2 button:hover { background: #ccc; color: #1d2d35; @@ -118,6 +149,12 @@ black-dot { border-radius: 50%; /* This creates a circular shape */ } .sub-pages-wrapper { + grid-template-columns: repeat(2, minmax(0, 1fr)); + margin-top: 40px; + grid-gap: 60px; + } + + .community-s-wrapper { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 40px; gap: 60px; @@ -139,10 +176,35 @@ black-dot { width: 340px; margin-top: 54px; } + + .get-started-btn button { + width: 540px; + } + + .provider-intro, + .deploy-intro, + .validator-intro, + .doc-intro { + width: 540px; + } + + .validator-intro { + width: 350px; + } + + .btn-br { + margin-top: 40px; + } } @media (max-width: 1200px) { .sub-pages-wrapper { + grid-template-columns: repeat(2, minmax(0, 1fr)); + margin-top: 20px; + grid-gap: 30px; + } + + .community-s-wrapper { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 40px; gap: 60px; @@ -159,12 +221,16 @@ black-dot { .get-s-btn2 button { width: 350px; - margin-top: 37px; + margin-top: 35px; } .get-s-btn button { width: 350px; margin: 10px auto; } + .get-started-btn button { + width: 350px; + margin: 10px auto; + } .g-s-svg svg { width: 350px; @@ -176,14 +242,30 @@ black-dot { .insider-s-intro { width: 350px; } + + .deploy-header, + .provider-s-header, + .docs-s-header { + width: 250px; + font-size: 24px; + font-style: normal; + font-weight: 700; + line-height: 32px; + margin: 10px 0; + } } // FOR SMALL SCREENS @media (max-width: 767px) { .sub-pages-wrapper { + grid-template-columns: repeat(1, minmax(0, 1fr)); + margin-top: -20px; + grid-gap: 0; + } + + .community-s-wrapper { grid-template-columns: repeat(1, minmax(0, 1fr)); margin-top: 40px; - gap: 60px; } .get-started-wrapper { @@ -209,6 +291,17 @@ black-dot { width: 100%; margin: 50px auto; } + + .deploy-header, + .provider-s-header, + .docs-s-header { + width: 230px; + font-size: 24px; + font-style: normal; + font-weight: 700; + line-height: 32px; + margin: 10px 0; + } } // OTHER RELATED SCREEN SIZES @@ -222,6 +315,18 @@ black-dot { align-items: center; } + .get-started-btn button { + width: 450px; + margin-bottom: 30px; + } + + .community-s-wrapper { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + } + .get-s-btn2 button { width: 380px; margin: 10px auto; @@ -232,11 +337,22 @@ black-dot { margin: 10px auto; color: #000; } + .provider-intro, + .deploy-intro, + .validator-intro, + .doc-intro { + width: 400px !important; + } + + .g-s-svg svg { + width: 450px; + } .provider-intro, .deploy-intro, .validator-intro, .doc-intro, + .follow-intro, .insider-s-intro { width: 380px; } diff --git a/layouts/get-started/get-started.html b/layouts/get-started/get-started.html index 12156034..83a0463a 100644 --- a/layouts/get-started/get-started.html +++ b/layouts/get-started/get-started.html @@ -5,14 +5,34 @@
Access high-performance GPUs
++ Tap into the Akash Marketplace and deploy permissionlessly using one of the network’s open-source deployment tools. +
+Deploy Your Application
Deploy a wide range of applications with one-click templates, including the leading AI models and web services.
-Become a Provider
Monetize your cloud resources on the open-source Akash marketplace.
-