Skip to content

Commit dcc3cc1

Browse files
committed
feat: added dark and light logos for platforms
1 parent d259911 commit dcc3cc1

File tree

5 files changed

+44
-9
lines changed

5 files changed

+44
-9
lines changed

platform_catalog/cdse_openeo_federation.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,16 @@
5151
"href": "https://documentation.dataspace.copernicus.eu/APIs/openEO/federation/openeo_federation.html"
5252
},
5353
{
54-
"rel": "logo",
54+
"rel": "logo-light",
5555
"type": "image/svg+xml",
5656
"title": "CDSE Logo",
5757
"href": "https://dataspace.copernicus.eu/themes/custom/copernicus/logonew.svg"
58+
},
59+
{
60+
"rel": "logo-dark",
61+
"type": "image/svg+xml",
62+
"title": "CDSE Logo",
63+
"href": "https://esa-earthcode.github.io/documentation/img/platforms/platform_logos/cdse.png"
5864
}
5965
]
6066
}

platform_catalog/gep.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,13 @@
5555
"href": "https://geohazards-tep.eu/"
5656
},
5757
{
58-
"rel": "logo",
58+
"rel": "logo-light",
59+
"type": "image/png",
60+
"title": "GEP Logo",
61+
"href": "https://geohazards-tep.eu/styles/img/logo-geohazard-by-terradue.png"
62+
},
63+
{
64+
"rel": "logo-dark",
5965
"type": "image/png",
6066
"title": "GEP Logo",
6167
"href": "https://geohazards-tep.eu/styles/img/logo-geohazard-by-terradue.png"

platform_catalog/openeo_eodc.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,15 @@
5151
"href": "https://openeo.eodc.eu"
5252
},
5353
{
54-
"rel": "logo",
55-
"type": "image/svg+xml",
56-
"title": "EODC Logo",
54+
"rel": "logo-light",
55+
"type": "image/png",
56+
"title": "Logo",
57+
"href": "https://eodc.eu/wp-content/uploads/2024/12/eodc_Logo_earth_white_400x400_rgb.png"
58+
},
59+
{
60+
"rel": "logo-dark",
61+
"type": "image/png",
62+
"title": "Logo",
5763
"href": "https://eodc.eu/wp-content/themes/eodc/assets/imgs/eodc_logo_marine.svg"
5864
}
5965
]

platform_catalog/openeo_platform.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,16 @@
5151
"href": "https://openeo.cloud/"
5252
},
5353
{
54-
"rel": "logo",
54+
"rel": "logo-light",
5555
"type": "image/svg+xml",
5656
"title": "openEO Platform Logo",
5757
"href": "https://openeo.cloud/wp-content/uploads/2023/10/logo-openeoplatform-wide-darkmode.svg"
58+
},
59+
{
60+
"rel": "logo-dark",
61+
"type": "image/svg+xml",
62+
"title": "openEO Platform Logo",
63+
"href": "https://docs.openeo.cloud/images/logo.png"
5864
}
5965
]
6066
}

schemas/platform.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,8 @@
363363
"enum": [
364364
"about",
365365
"documentation",
366-
"logo",
366+
"logo-light",
367+
"logo-dark",
367368
"website"
368369
]
369370
},
@@ -388,14 +389,24 @@
388389
"href"
389390
]
390391
},
391-
"minItems": 1,
392+
"minItems": 2,
392393
"allOf": [
393394
{
394395
"contains": {
395396
"type": "object",
396397
"properties": {
397398
"rel": {
398-
"const": "logo"
399+
"const": "logo-light"
400+
}
401+
}
402+
}
403+
},
404+
{
405+
"contains": {
406+
"type": "object",
407+
"properties": {
408+
"rel": {
409+
"const": "logo-dark"
399410
}
400411
}
401412
}

0 commit comments

Comments
 (0)