Skip to content

Commit 344cd94

Browse files
committed
chore: messaging
1 parent e5ba77d commit 344cd94

File tree

5 files changed

+16260
-291
lines changed

5 files changed

+16260
-291
lines changed

src/components/Platforms.js

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
import React from "react";
2+
import Link from "@docusaurus/Link";
3+
import useBaseUrl from "@docusaurus/useBaseUrl";
4+
5+
export const Platforms = () => {
6+
return (
7+
<section className="mb-4 mt-12">
8+
<h2 className="mt-8 text-2xl font-semibold tracking-wide md:text-3xl">
9+
Setup Guide 📗
10+
</h2>
11+
<p className="text-l mb-8 mt-4 max-w-4xl">
12+
Follow the steps below to install Keploy on your system. ⏱️
13+
</p>
14+
15+
16+
<div className="grid grid-cols-1 gap-6 md:grid-cols-3 lg:gap-8">
17+
<Link
18+
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"
19+
to={useBaseUrl("/server/installation/")}
20+
>
21+
<img
22+
className="h-16 w-16"
23+
src="/docs/img/os/windows-logo.svg"
24+
alt="Windows logo"
25+
/>
26+
<p className="text-lg font-semibold">Windows</p>
27+
</Link>
28+
<Link
29+
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"
30+
to={useBaseUrl("/server/installation/")}
31+
>
32+
<img
33+
className="h-16 w-16"
34+
src="/docs/img/os/linux-logo.svg"
35+
alt="Linux logo"
36+
/>
37+
<p className="text-lg font-semibold">Linux</p>
38+
</Link>
39+
<Link
40+
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"
41+
to={useBaseUrl("/server/installation/")}
42+
>
43+
<img
44+
className="h-16 w-16"
45+
src="/docs/img/os/apple-logo.svg"
46+
alt="MacOs logo"
47+
/>
48+
<p className="text-lg font-semibold">MacOS</p>
49+
</Link>
50+
</div>
51+
<p className="text-l mt-6 text-gray-500">
52+
<b>⚠️ Important Note:</b> Keploy v2 is currently in Beta, and the best
53+
experience is on Linux. Docker support is experimental, and some
54+
limitations may apply.
55+
</p>
56+
</section>
57+
);
58+
};

0 commit comments

Comments
 (0)