From 7edccd07d1ebd808201228840e8e73b8160a4849 Mon Sep 17 00:00:00 2001 From: Animesh Pathak <53110238+Sonichigo@users.noreply.github.com> Date: Tue, 12 Sep 2023 18:37:04 +0530 Subject: [PATCH] fix: images name updated to fix the broken images link (#192) * fix: metadata description duplication corrected Signed-off-by: Animesh Pathak * fix: broken images fixed-I Signed-off-by: Animesh * fix: images name updated to fix the broken images Signed-off-by: Animesh --------- Signed-off-by: Animesh Pathak Signed-off-by: Animesh Co-authored-by: Animesh Pathak --- src/components/Intro.js | 8 ++++---- src/components/QuickStart.js | 6 +++--- src/components/SDKs.js | 6 +++--- static/img/Apple.svg | 1 - static/img/{Apple_grey.svg => apple-logo.svg} | 0 static/img/{docker.svg => docker-logo.svg} | 0 static/img/{JavaScript.svg => javascript-logo.svg} | 0 static/img/{Linux.svg => linux-logo.svg} | 0 static/img/{MongoDB.svg => mongodb-logo.svg} | 0 static/img/{Oracle.svg => oracle-logo.svg} | 0 static/img/{PostgresSQL.svg => postgres-logo.svg} | 0 static/img/{Windows.svg => windows-logo.svg} | 0 12 files changed, 10 insertions(+), 11 deletions(-) delete mode 100644 static/img/Apple.svg rename static/img/{Apple_grey.svg => apple-logo.svg} (100%) rename static/img/{docker.svg => docker-logo.svg} (100%) rename static/img/{JavaScript.svg => javascript-logo.svg} (100%) rename static/img/{Linux.svg => linux-logo.svg} (100%) rename static/img/{MongoDB.svg => mongodb-logo.svg} (100%) rename static/img/{Oracle.svg => oracle-logo.svg} (100%) rename static/img/{PostgresSQL.svg => postgres-logo.svg} (100%) rename static/img/{Windows.svg => windows-logo.svg} (100%) diff --git a/src/components/Intro.js b/src/components/Intro.js index 9e322add4..499fa8c30 100644 --- a/src/components/Intro.js +++ b/src/components/Intro.js @@ -74,7 +74,7 @@ function Languages() { > Javascript logo

Javascript (WIP)

@@ -114,7 +114,7 @@ function Server() { > Docker logo

MongoDB

@@ -126,7 +126,7 @@ function Server() { > Oracle logo

Oracle (WIP)

@@ -138,7 +138,7 @@ function Server() { > PostgresSQL logo

PostgresSQL (WIP)

diff --git a/src/components/QuickStart.js b/src/components/QuickStart.js index ed8ecad35..3631f8abb 100644 --- a/src/components/QuickStart.js +++ b/src/components/QuickStart.js @@ -23,21 +23,21 @@ export const QuickStart = () => { className=" scale flex flex-col items-center justify-center space-y-3 rounded-lg bg-[color:var(--ifm-card-background-color)] p-6 text-center shadow-lg" to={useBaseUrl("/docs/server/windows/installation")} > - Windows logo + Windows logo

Windows

- Linux logo + Linux logo

Linux

- Mac logo + Mac logo

MacOS

diff --git a/src/components/SDKs.js b/src/components/SDKs.js index 67162e578..a3c1172fc 100644 --- a/src/components/SDKs.js +++ b/src/components/SDKs.js @@ -15,14 +15,14 @@ export const SDKs = () => { className=" scale flex flex-col items-center justify-center space-y-3 rounded-lg bg-[color:var(--ifm-card-background-color)] p-6 text-center shadow-lg" to={useBaseUrl("/docs/server/windows/installation")} > - Windows logo + Windows logo

Windows

Linux logo

Linux

@@ -31,7 +31,7 @@ export const SDKs = () => { className=" scale flex flex-col items-center justify-center space-y-3 rounded-lg bg-[color:var(--ifm-card-background-color)] p-6 text-center shadow-lg" to={useBaseUrl("/docs/server/macos/installation")} > - Mac logo + Mac logo

MacOS

diff --git a/static/img/Apple.svg b/static/img/Apple.svg deleted file mode 100644 index e5f9c80b2..000000000 --- a/static/img/Apple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/static/img/Apple_grey.svg b/static/img/apple-logo.svg similarity index 100% rename from static/img/Apple_grey.svg rename to static/img/apple-logo.svg diff --git a/static/img/docker.svg b/static/img/docker-logo.svg similarity index 100% rename from static/img/docker.svg rename to static/img/docker-logo.svg diff --git a/static/img/JavaScript.svg b/static/img/javascript-logo.svg similarity index 100% rename from static/img/JavaScript.svg rename to static/img/javascript-logo.svg diff --git a/static/img/Linux.svg b/static/img/linux-logo.svg similarity index 100% rename from static/img/Linux.svg rename to static/img/linux-logo.svg diff --git a/static/img/MongoDB.svg b/static/img/mongodb-logo.svg similarity index 100% rename from static/img/MongoDB.svg rename to static/img/mongodb-logo.svg diff --git a/static/img/Oracle.svg b/static/img/oracle-logo.svg similarity index 100% rename from static/img/Oracle.svg rename to static/img/oracle-logo.svg diff --git a/static/img/PostgresSQL.svg b/static/img/postgres-logo.svg similarity index 100% rename from static/img/PostgresSQL.svg rename to static/img/postgres-logo.svg diff --git a/static/img/Windows.svg b/static/img/windows-logo.svg similarity index 100% rename from static/img/Windows.svg rename to static/img/windows-logo.svg