Skip to content

Commit

Permalink
fix: images name updated to fix the broken images
Browse files Browse the repository at this point in the history
Signed-off-by: Animesh <[email protected]>
  • Loading branch information
Sonichigo committed Sep 12, 2023
1 parent 5909a31 commit b3d80ff
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/components/Intro.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function Languages() {
>
<img
className="h-8 w-8 transition hover:scale-110"
src="/img/javascript.svg"
src="/img/javascript-logo.svg"
alt="Javascript logo"
/>
<p className="font-semibold">Javascript (WIP)</p>
Expand Down Expand Up @@ -114,7 +114,7 @@ function Server() {
>
<img
className="h-8 w-8"
src="/img/mongodb.svg"
src="/img/mongodb-logo.svg"
alt="Docker logo"
/>
<p className="font-semibold">MongoDB</p>
Expand All @@ -126,7 +126,7 @@ function Server() {
>
<img
className="h-8 w-8"
src="/img/oracle.svg"
src="/img/oracle-logo.svg"
alt="Oracle logo"
/>
<p className="font-semibold">Oracle (WIP)</p>
Expand All @@ -138,7 +138,7 @@ function Server() {
>
<img
className="h-8 w-8"
src="/img/postgressql.svg"
src="/img/postgres-logo.svg"
alt="PostgresSQL logo"
/>
<p className="font-semibold">PostgresSQL (WIP)</p>
Expand Down
6 changes: 3 additions & 3 deletions src/components/QuickStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")}
>
<img className="h-16 w-16" src="/img/windows.svg" alt="Windows logo" />
<img className="h-16 w-16" src="/img/windows-logo.svg" alt="Windows logo" />
<p className="text-lg">Windows</p>
</Link>
<Link
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/linux/installation")}
>
<img className="h-16 w-16" src="/img/linux.svg" alt="Linux logo" />
<img className="h-16 w-16" src="/img/linux-logo.svg" alt="Linux logo" />
<p className="text-lg">Linux</p>
</Link>
<Link
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")}
>
<img className="h-16 w-16" src="/img/apple_grey.svg" alt="Mac logo" />
<img className="h-16 w-16" src="/img/apple-logo.svg" alt="Mac logo" />
<p className="text-lg">MacOS</p>
</Link>
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/components/SDKs.js
Original file line number Diff line number Diff line change
Expand Up @@ -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")}
>
<img className="h-16 w-16" src="/img/windows.svg" alt="Windows logo" />
<img className="h-16 w-16" src="/img/windows-logo.svg" alt="Windows logo" />
<p className="text-lg">Windows</p>
</Link>
<Link 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/linux/installation")}>
<img
className="h-16 w-16"
src="/img/linux.svg"
src="/img/linux-logo.svg"
alt="Linux logo"
/>
<p className="text-lg">Linux</p>
Expand All @@ -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")}
>
<img className="h-16 w-16" src="/img/apple_grey.svg" alt="Mac logo" />
<img className="h-16 w-16" src="/img/apple-logo.svg" alt="Mac logo" />
<p className="text-lg">MacOS</p>
</Link>
</div>
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit b3d80ff

Please sign in to comment.