From 6ae43ba412ce326ea50b9c9464e6fdbabb34487e Mon Sep 17 00:00:00 2001 From: xbpcb Date: Mon, 16 Sep 2024 21:46:42 +0300 Subject: [PATCH 01/33] GpSponsors: scaffold a new page --- src/assets/js/app-globalping.js | 2 ++ src/assets/less/app-globalping.less | 1 + .../less/pages/globalping/sponsors.less | 6 ++++ src/views/pages/globalping/sponsors.html | 33 +++++++++++++++++++ 4 files changed, 42 insertions(+) create mode 100644 src/assets/less/pages/globalping/sponsors.less create mode 100644 src/views/pages/globalping/sponsors.html diff --git a/src/assets/js/app-globalping.js b/src/assets/js/app-globalping.js index ebf3c946f..30cdedc6e 100644 --- a/src/assets/js/app-globalping.js +++ b/src/assets/js/app-globalping.js @@ -9,6 +9,7 @@ const cGlobalpingSlack = require('../../views/pages/globalping/slack.html'); const cGlobalpingNetworkTools = require('../../views/pages/globalping/network-tools.html'); const cGlobalpingIntegrations = require('../../views/pages/globalping/integrations.html'); const cGlobalpingAbout = require('../../views/pages/globalping/about-us.html'); +const cGlobalpingSponsors = require('../../views/pages/globalping/sponsors.html'); const { getGlobalpingUser } = require('./utils/http'); Ractive.DEBUG = location.hostname === 'localhost'; @@ -33,6 +34,7 @@ app.router.addRoute('/slack', cGlobalpingSlack); app.router.addRoute('/network-tools/:params?', cGlobalpingNetworkTools); app.router.addRoute('/integrations', cGlobalpingIntegrations); app.router.addRoute('/about-us', cGlobalpingAbout); +app.router.addRoute('/sponsors', cGlobalpingSponsors); app.router.replaceQueryParam = function (name, newValue) { history.replaceState(history.state, null, location.href.replace(new RegExp(`${name}=[^&]+|$`), `${name}=${encodeURIComponent(newValue)}`)); diff --git a/src/assets/less/app-globalping.less b/src/assets/less/app-globalping.less index a96ce650d..91036e2e7 100644 --- a/src/assets/less/app-globalping.less +++ b/src/assets/less/app-globalping.less @@ -24,3 +24,4 @@ @import "pages/globalping/network-tools.less"; @import "pages/globalping/integrations.less"; @import "pages/globalping/about-us.less"; +@import "pages/globalping/sponsors.less"; diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less new file mode 100644 index 000000000..c44ba2cef --- /dev/null +++ b/src/assets/less/pages/globalping/sponsors.less @@ -0,0 +1,6 @@ +.p-globalping-sponsors { + font-family: Lexend, sans-serif; + font-style: normal; + font-weight: 400; + -webkit-font-smoothing: antialiased; +} diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html new file mode 100644 index 000000000..2e53df070 --- /dev/null +++ b/src/views/pages/globalping/sponsors.html @@ -0,0 +1,33 @@ + + + + + + + + + + + + +
+ + +
+

SPONSORS

+
+
+ + +
+ + From 01d5d985ba3647c70668f5b27a0c80b089f3e118 Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 18:54:14 +0300 Subject: [PATCH 02/33] GpSponsors: add new mail icon svg --- src/assets/img/globalping/mail-icon.svg | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/assets/img/globalping/mail-icon.svg diff --git a/src/assets/img/globalping/mail-icon.svg b/src/assets/img/globalping/mail-icon.svg new file mode 100644 index 000000000..4ed0ad66f --- /dev/null +++ b/src/assets/img/globalping/mail-icon.svg @@ -0,0 +1,4 @@ + + + + From f1667ccdae4b2fef6dd356124785d04b80729fa1 Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 18:54:32 +0300 Subject: [PATCH 03/33] GpSponsors: add main info content, styles --- .../less/pages/globalping/sponsors.less | 72 +++++++++++++++++++ src/views/pages/globalping/sponsors.html | 47 +++++++++++- 2 files changed, 118 insertions(+), 1 deletion(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index c44ba2cef..4bf4b3214 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -3,4 +3,76 @@ font-style: normal; font-weight: 400; -webkit-font-smoothing: antialiased; + display: flex; + flex-direction: column; + row-gap: 48px; + padding: 24px; + + .gp-sponsors { + &_header { + font-size: 40px; + font-weight: 600; + line-height: 60px; + color: #17233a; + margin: 0; + } + + &_main-info { + display: flex; + flex-direction: column; + + &_descr { + font-size: 16px; + font-weight: 400; + line-height: 32px; + } + + &_list-wrapper { + display: flex; + flex-direction: column; + row-gap: 8px; + margin-top: 24px; + font-size: 16px; + font-weight: 400; + line-height: 32px; + color: #17233a; + + &_list { + display: flex; + flex-direction: column; + row-gap: 8px; + + &_item { + display: flex; + column-gap: 8px; + + > img { + margin-top: 6px; + } + } + } + } + + &_contact-us { + display: flex; + column-gap: 8px; + margin-top: 32px; + font-size: 16px; + font-weight: 400; + line-height: 20px; + + &_mail { + display: flex; + align-items: center; + column-gap: 4px; + cursor: pointer; + text-decoration: none; + + > span { + color: #17d4a7; + } + } + } + } + } } diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index 2e53df070..3bbafbb8f 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -13,8 +13,53 @@
+

SPONSORS

+
-

SPONSORS

+
+ As an open source project that relies on the community to operate we are also highly appreciative of larger organizations that support our work. +
+ +
+ + Globalping sponsors can be listed here for considerable and ongoing contributions to the project in the form of: + + +
+ + + + Infrastructure like servers and services + + + + + + Mass hosting of probes managed by us + + + + + + Grants and on-going sponsorships + + + + + + Dev hours and code contributions + +
+
+ +
+ Contact us at + + + + d@globalping.io + +
From 29d12cb382a49a09f2419ba193d198a8500624ad Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 19:50:18 +0300 Subject: [PATCH 04/33] GpSponsors: scaffold sponsors list, titles --- .../less/pages/globalping/sponsors.less | 47 +++++++++++++++++++ src/views/pages/globalping/sponsors.html | 30 ++++++++++++ 2 files changed, 77 insertions(+) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index 4bf4b3214..95baf5aca 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -74,5 +74,52 @@ } } } + + &_sponsors-list { + display: flex; + flex-direction: column; + row-gap: 24px; + + &_platinum, &_gold, &_bronze { + display: flex; + flex-direction: column; + row-gap: 40px; + + &_title { + background-clip: text; + -webkit-background-clip: text; + -moz-background-clip: text; + -webkit-text-fill-color: transparent; + -moz-text-fill-color: transparent; + color: transparent; + font-size: 40px; + font-weight: 600; + line-height: 56px; + letter-spacing: .2px; + text-align: center; + } + + &_list { + &_item { + background: #f3f5f6; + padding: 24px; + border-radius: 8px; + border: 1px solid #E7E7EE; + } + } + } + + &_platinum_title { + background-image: linear-gradient(180deg, #5e7182 0%, rgba(94, 113, 130, .24) 53.67%, #5e7182 100%); + } + + &_gold_title { + background-image: linear-gradient(180deg, #ff8200 0%, rgba(255, 130, 0, .24) 49.17%, #ff8200 100%); + } + + &_bronze_title { + background-image: linear-gradient(180deg, #9a5a37 0%, rgba(155, 91, 54, .24) 50.17%, #9a5a37 100%); + } + } } } diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index 3bbafbb8f..877360ca1 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -61,6 +61,36 @@

SPONSORS

+ +
+
+
PLATINUM
+ +
+
+
+
+ +
+
GOLD
+ +
+
+
+
+ +
+
BRONZE
+ +
+
+
+
+ +
+ +
+
From e45e812a558c5a2020d212648d4ca78708a9487c Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 19:51:01 +0300 Subject: [PATCH 05/33] Small fix --- src/assets/less/pages/globalping/sponsors.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index 95baf5aca..518834727 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -104,7 +104,7 @@ background: #f3f5f6; padding: 24px; border-radius: 8px; - border: 1px solid #E7E7EE; + border: 1px solid #e7e7ee; } } } From ec2cf2ec5cf5b613769f751b24b0e1a12aee570d Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 21:44:15 +0300 Subject: [PATCH 06/33] GpSponsors: scaffold sponsors list --- .../less/pages/globalping/sponsors.less | 35 ++++++++++++++ src/views/pages/globalping/sponsors.html | 47 +++++++++++++++++-- 2 files changed, 79 insertions(+), 3 deletions(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index 518834727..d3e20f8f8 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -101,10 +101,45 @@ &_list { &_item { + display: flex; + flex-direction: column; + row-gap: 24px; background: #f3f5f6; padding: 24px; border-radius: 8px; border: 1px solid #e7e7ee; + box-sizing: border-box; + + &_logo { + display: flex; + justify-content: center; + align-items: center; + height: 80px; + } + + &_descr { + font-size: 16px; + font-weight: 400; + line-height: 20px; + color: #17233a; + margin: 0; + } + + &_link { + display: flex; + column-gap: 12px; + justify-content: center; + align-items: center; + + > a { + text-decoration: none; + color: #17d4a7; + font-size: 14px; + font-weight: 600; + line-height: 24px; + letter-spacing: .2; + } + } } } } diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index 877360ca1..e33e3da91 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -67,7 +67,24 @@

SPONSORS

PLATINUM
-
+
+ + +

+ Main backend CDN for jsDelivr offering unlimited bandwidth and locations. "Offers free and commercial, cloud-based services to help secure and accelerate websites." +

+ + + + + www.cloudflare.com + +
@@ -75,7 +92,24 @@

SPONSORS

GOLD
-
+
+ + +

+ Algolia Search provides hosted full-text, numerical, faceted and geolocalized search. +

+ + + + + www.algolia.com + +
@@ -83,7 +117,14 @@

SPONSORS

BRONZE
-
+
+ +
From 4ab7252aa01a33f0f0828ba2c1128887dfb718a8 Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 22:09:35 +0300 Subject: [PATCH 07/33] GpSponsors: add become-a-sponsor block to a bronze list --- .../less/pages/globalping/sponsors.less | 36 +++++++++++++++++++ src/views/pages/globalping/sponsors.html | 8 +++++ 2 files changed, 44 insertions(+) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index d3e20f8f8..53d9e423c 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -100,6 +100,10 @@ } &_list { + display: flex; + flex-direction: column; + row-gap: 24px; + &_item { display: flex; flex-direction: column; @@ -140,6 +144,38 @@ letter-spacing: .2; } } + + &.become-a-sponsor { + display: flex; + flex-direction: column; + align-items: center; + padding: 29px 0; + row-gap: 10px; + background: #e8fff9; + + .gp-sponsors_sponsors-list_bronze_list_item_title { + text-align: center; + font-size: 24px; + font-weight: 600; + line-height: 36px; + letter-spacing: .2; + color: #17d4a7; + } + + .gp-sponsors_sponsors-list_bronze_list_item_descr { + text-align: center; + font-size: 16px; + font-weight: 400; + line-height: 20px; + + > a { + color: #17d4a7; + font-size: 16px; + font-weight: 600; + line-height: 24px; + } + } + } } } } diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index e33e3da91..24a08961e 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -125,6 +125,14 @@

SPONSORS

loading="lazy"/> + +
+ Become a sponsor + + Learn how to become our sponsor + here. + +
From f1513e3442ea3bd477a9e20fe9699f41c5dd91a9 Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 22:22:48 +0300 Subject: [PATCH 08/33] GpSponsors: add new icon heart svg --- src/assets/img/globalping/heart.svg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/assets/img/globalping/heart.svg diff --git a/src/assets/img/globalping/heart.svg b/src/assets/img/globalping/heart.svg new file mode 100644 index 000000000..e20783c54 --- /dev/null +++ b/src/assets/img/globalping/heart.svg @@ -0,0 +1,3 @@ + + + From 708ea8b346c17597ef51ecd74ba6920402fbed4b Mon Sep 17 00:00:00 2001 From: xbpcb Date: Tue, 17 Sep 2024 22:23:07 +0300 Subject: [PATCH 09/33] GpSponsors: add help-us content and styles --- .../less/pages/globalping/sponsors.less | 26 ++++++++++++++++++- src/views/pages/globalping/sponsors.html | 15 ++++++++--- 2 files changed, 37 insertions(+), 4 deletions(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index 53d9e423c..63da48180 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -6,7 +6,8 @@ display: flex; flex-direction: column; row-gap: 48px; - padding: 24px; + padding: 24px 24px 0; + margin-bottom: -16px; .gp-sponsors { &_header { @@ -192,5 +193,28 @@ background-image: linear-gradient(180deg, #9a5a37 0%, rgba(155, 91, 54, .24) 50.17%, #9a5a37 100%); } } + + &_help-us { + display: flex; + flex-direction: column; + align-items: center; + padding: 48px 0; + row-gap: 24px; + + &_text { + font-size: 24px; + font-weight: 600; + line-height: 36px; + letter-spacing: .2; + text-align: center; + } + + .gp_btn_green { + font-size: 14px; + font-weight: 400; + line-height: 20px; + min-width: 179px; + } + } } } diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index 24a08961e..3565dd03a 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -13,7 +13,7 @@
-

SPONSORS

+

Our Sponsors

@@ -135,10 +135,19 @@

SPONSORS

+ -
+
+ -
+ + Help us make jsDelivr even better + + +
From 46a206faa86b47c1727cf11f310e61a2166b546a Mon Sep 17 00:00:00 2001 From: xbpcb Date: Wed, 18 Sep 2024 00:00:11 +0300 Subject: [PATCH 10/33] GpSponsors: mod desktop styles --- .../less/pages/globalping/sponsors.less | 29 +++++++++++++++++-- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index 63da48180..c02cde376 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -9,6 +9,14 @@ padding: 24px 24px 0; margin-bottom: -16px; + @media (min-width: @screen-sm-min) { + padding: 100px 24px 88px; + margin-bottom: 0; + width: 100%; + max-width: 856px; + row-gap: 80px; + } + .gp-sponsors { &_header { font-size: 40px; @@ -16,6 +24,10 @@ line-height: 60px; color: #17233a; margin: 0; + + @media (min-width: @screen-sm-min) { + margin-bottom: -32px; + } } &_main-info { @@ -38,6 +50,10 @@ line-height: 32px; color: #17233a; + @media (min-width: @screen-sm-min) { + margin-top: 16px; + } + &_list { display: flex; flex-direction: column; @@ -142,7 +158,7 @@ font-size: 14px; font-weight: 600; line-height: 24px; - letter-spacing: .2; + letter-spacing: .2px; } } @@ -159,7 +175,7 @@ font-size: 24px; font-weight: 600; line-height: 36px; - letter-spacing: .2; + letter-spacing: .2px; color: #17d4a7; } @@ -201,11 +217,18 @@ padding: 48px 0; row-gap: 24px; + @media (min-width: @screen-sm-min) { + flex-direction: row; + height: 136px; + column-gap: 24px; + justify-content: center; + } + &_text { font-size: 24px; font-weight: 600; line-height: 36px; - letter-spacing: .2; + letter-spacing: .2px; text-align: center; } From b813816db9f2c19eb86c5400bc224351306b580e Mon Sep 17 00:00:00 2001 From: xbpcb Date: Wed, 18 Sep 2024 00:34:33 +0300 Subject: [PATCH 11/33] GpSponsors: mod desktop styles further --- .../less/pages/globalping/sponsors.less | 20 ++++++++++++++++++- src/views/pages/globalping/sponsors.html | 18 ++++++++++++++++- 2 files changed, 36 insertions(+), 2 deletions(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index c02cde376..2447c0698 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -11,7 +11,7 @@ @media (min-width: @screen-sm-min) { padding: 100px 24px 88px; - margin-bottom: 0; + margin: 0 auto; width: 100%; max-width: 856px; row-gap: 80px; @@ -97,6 +97,10 @@ flex-direction: column; row-gap: 24px; + @media (min-width: @screen-sm-min) { + row-gap: 80px; + } + &_platinum, &_gold, &_bronze { display: flex; flex-direction: column; @@ -121,6 +125,11 @@ flex-direction: column; row-gap: 24px; + @media (min-width: @screen-sm-min) { + flex-direction: row; + column-gap: 24px; + } + &_item { display: flex; flex-direction: column; @@ -131,6 +140,10 @@ border: 1px solid #e7e7ee; box-sizing: border-box; + @media (min-width: @screen-sm-min) { + width: calc((100% - 24px) / 2); + } + &_logo { display: flex; justify-content: center; @@ -166,10 +179,13 @@ display: flex; flex-direction: column; align-items: center; + justify-content: center; padding: 29px 0; row-gap: 10px; background: #e8fff9; + .gp-sponsors_sponsors-list_platinum_list_item_title, + .gp-sponsors_sponsors-list_gold_list_item_title, .gp-sponsors_sponsors-list_bronze_list_item_title { text-align: center; font-size: 24px; @@ -179,6 +195,8 @@ color: #17d4a7; } + .gp-sponsors_sponsors-list_platinum_list_item_descr, + .gp-sponsors_sponsors-list_gold_list_item_descr, .gp-sponsors_sponsors-list_bronze_list_item_descr { text-align: center; font-size: 16px; diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index 3565dd03a..1d1744fc9 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -85,6 +85,14 @@

Our Sponsors

www.cloudflare.com + +
+ Become a sponsor + + Learn how to become our sponsor + here. + +
@@ -110,6 +118,14 @@

Our Sponsors

www.algolia.com + +
+ Become a sponsor + + Learn how to become our sponsor + here. + +
@@ -130,7 +146,7 @@

Our Sponsors

Become a sponsor Learn how to become our sponsor - here. + here. From 5d23eb3e331dea6d27a4ff81c0701cb54edc1a46 Mon Sep 17 00:00:00 2001 From: xbpcb Date: Wed, 18 Sep 2024 09:40:42 +0300 Subject: [PATCH 12/33] GpSponsors: fix become-a-sponsor styles --- src/assets/less/pages/globalping/sponsors.less | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/assets/less/pages/globalping/sponsors.less b/src/assets/less/pages/globalping/sponsors.less index 2447c0698..62d056442 100644 --- a/src/assets/less/pages/globalping/sponsors.less +++ b/src/assets/less/pages/globalping/sponsors.less @@ -130,6 +130,10 @@ column-gap: 24px; } + .gp-sponsors_sponsors-list_bronze_list_item.become-a-sponsor { + display: flex; + } + &_item { display: flex; flex-direction: column; @@ -176,7 +180,7 @@ } &.become-a-sponsor { - display: flex; + display: none; flex-direction: column; align-items: center; justify-content: center; @@ -184,6 +188,10 @@ row-gap: 10px; background: #e8fff9; + @media (min-width: @screen-sm-min) { + display: flex; + } + .gp-sponsors_sponsors-list_platinum_list_item_title, .gp-sponsors_sponsors-list_gold_list_item_title, .gp-sponsors_sponsors-list_bronze_list_item_title { From e8e040cb8db699b4164b66e05be58252760e3cf6 Mon Sep 17 00:00:00 2001 From: xbpcb Date: Wed, 18 Sep 2024 10:07:29 +0300 Subject: [PATCH 13/33] GpSponsors: upd comments --- src/views/pages/globalping/sponsors.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index 1d1744fc9..b831f189b 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -27,25 +27,25 @@

Our Sponsors

- + Infrastructure like servers and services - + Mass hosting of probes managed by us - + Grants and on-going sponsorships - + Dev hours and code contributions From c4a9ce903cc68324bb0a0ae2b7448416b7af3b4c Mon Sep 17 00:00:00 2001 From: xbpcb Date: Thu, 19 Sep 2024 17:53:32 +0300 Subject: [PATCH 14/33] GpSponsors: add TODO --- src/views/pages/globalping/sponsors.html | 1 + 1 file changed, 1 insertion(+) diff --git a/src/views/pages/globalping/sponsors.html b/src/views/pages/globalping/sponsors.html index b831f189b..e88caa8d9 100644 --- a/src/views/pages/globalping/sponsors.html +++ b/src/views/pages/globalping/sponsors.html @@ -8,6 +8,7 @@ +
From dfde98fe3c5dca3ce956f7b18ef1ed0ed058a11f Mon Sep 17 00:00:00 2001 From: xbpcb Date: Thu, 19 Sep 2024 18:35:27 +0300 Subject: [PATCH 15/33] GpHeader: show sponsors link --- src/views/components/gp-header.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/components/gp-header.html b/src/views/components/gp-header.html index cc225dd6b..c894c81ed 100644 --- a/src/views/components/gp-header.html +++ b/src/views/components/gp-header.html @@ -29,7 +29,7 @@
  • CLI
  • - +
  • Sponsors