Skip to content

Commit

Permalink
docs: replace image with local image links (keploy#228)
Browse files Browse the repository at this point in the history
* docs: replace image with local image links

Signed-off-by: Akash Kumar <[email protected]>

* docs: replace image links with img/os/*

Signed-off-by: Akash Kumar <[email protected]>

---------

Signed-off-by: Akash Kumar <[email protected]>
Signed-off-by: schauhan2 <[email protected]>
  • Loading branch information
AkashKumar7902 authored and schauhan2 committed Oct 7, 2023
1 parent 974463b commit 032253a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 9 deletions.
10 changes: 7 additions & 3 deletions src/components/QuickStart.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const QuickStart = () => {
>
<img
className="h-16 w-16"
src="/img/windows-logo.svg"
src="/img/os/windows-logo.svg"
alt="Windows logo"
/>
<p className="text-lg font-semibold">Windows</p>
Expand All @@ -52,7 +52,7 @@ export const QuickStart = () => {
>
<img
className="h-16 w-16"
src="/img/linux-logo.svg"
src="/img/os/linux-logo.svg"
alt="Linux logo"
/>
<p className="text-lg font-semibold">Linux</p>
Expand All @@ -61,7 +61,11 @@ 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/macos/installation")}
>
<img className="h-16 w-16" src="/img/apple-logo.svg" alt="Mac logo" />
<img
className="h-16 w-16"
src="/img/os/apple-logo.svg"
alt="Mac logo"
/>
<p className="text-lg font-semibold">MacOS</p>
</Link>
</div>
Expand Down
10 changes: 7 additions & 3 deletions src/components/SDKs.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const SDKs = () => {
>
<img
className="h-16 w-16"
src="/img/windows-logo.svg"
src="/img/os/windows-logo.svg"
alt="Windows logo"
/>
<p className="text-lg">Windows</p>
Expand All @@ -28,7 +28,7 @@ export const SDKs = () => {
>
<img
className="h-16 w-16"
src="/img/linux-logo.svg"
src="/img/os/linux-logo.svg"
alt="Linux logo"
/>
<p className="text-lg">Linux</p>
Expand All @@ -37,7 +37,11 @@ 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-logo.svg" alt="Mac logo" />
<img
className="h-16 w-16"
src="/img/os/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
6 changes: 3 additions & 3 deletions versioned_docs/version-2.0.0/server/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ sidebar_label: Installation

Let's get Keploy up and running on your Windows, Linux, or macOS machine, so you can start crafting test cases in minutes. ⏱️

- [Windows](/docs/server/windows/installation/) <img src="https://cdn.freebiesupply.com/logos/large/2x/microsoft-windows-22-logo-png-transparent.png" width="2%" />
- [Linux](/docs/server/linux/installation) <img src="https://th.bing.com/th/id/R.7802b52b7916c00014450891496fe04a?rik=r8GZM4o2Ch1tHQ&riu=http%3a%2f%2f1000logos.net%2fwp-content%2fuploads%2f2017%2f03%2fLINUX-LOGO.png&ehk=5m0lBvAd%2bzhvGg%2fu4i3%2f4EEHhF4N0PuzR%2fBmC1lFzfw%3d&risl=&pid=ImgRaw&r=0" width="2%" />
- [MacOS](/docs/server/macos/installation) <img src="https://www.pngplay.com/wp-content/uploads/3/Apple-Logo-Transparent-Images.png" width="2%" />
- [Windows](/docs/server/windows/installation/) <img src="/img/os/windows-logo.svg" width="2%" />
- [Linux](/docs/server/linux/installation) <img src="/img/os/linux-logo.svg" width="2%" />
- [MacOS](/docs/server/macos/installation) <img src="/img/os/apple-logo.svg" width="2%" />

⚠️ Please note that Keploy v2 is currently in development, with the best experience on Linux. Docker support is experimental and may have some limitations for certain use cases.

0 comments on commit 032253a

Please sign in to comment.