Skip to content

Commit 54d3943

Browse files
committed
fix: removed old contact us page
Signed-off-by: Achanandhi-M <achanandhi.m@gmail.com>
2 parents 5ec92af + 943eb6c commit 54d3943

File tree

92 files changed

+65
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+65
-157
lines changed

docusaurus.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -321,6 +321,7 @@ module.exports = {
321321
},
322322
],
323323
],
324+
324325
scripts: [
325326
{
326327
src: "/docs/scripts/feedback.js",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
]
5151
},
5252
"devDependencies": {
53-
"@docusaurus/plugin-client-redirects": "^3.2.1",
53+
"@docusaurus/plugin-client-redirects": "^3.8.1",
5454
"@tailwindcss/typography": "^0.5.0",
5555
"autoprefixer": "^10.4.0",
5656
"docusaurus": "^1.14.7",

src/components/KeployCloud.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const KeployCloud = () => {
44
return (
55
<section
66
id="cloud"
7-
className="mt-8 flex max-w-7xl items-center space-x-5 rounded-lg bg-[color:var(--ifm-card-background-color)] p-5"
7+
className="mb-8 mt-12 flex max-w-7xl items-center space-x-5 rounded-lg bg-[color:var(--ifm-card-background-color)] p-5"
88
>
99
<div className="prose prose-orange mx-auto max-w-3xl">
1010
<h1> Question? 🤔💭</h1>

src/components/QuickStart.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,6 @@ export const QuickStart = () => {
9797
<p className="text-lg font-semibold">MacOS</p>
9898
</Link>
9999
</div>
100-
<p className=" text-l mt-6 text-gray-500">
101-
⚠️ Please note that Keploy v2 is currently in development, with the best
102-
experience on Linux. Docker support is experimental and may have some
103-
limitations for certain use cases.
104-
</p>
105100
</section>
106101
);
107102
};

src/theme/DocItem/index.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ import DocBreadcrumbs from "@theme/DocBreadcrumbs";
1919
import Layout from "@docusaurus/core/lib/client/theme-fallback/Layout";
2020
import Head from "@docusaurus/Head";
2121
import MDXContent from "@theme/MDXContent";
22-
import {KeployCloud} from '@site/src/components/KeployCloud';
23-
22+
import {KeployCloud} from "@site/src/components/KeployCloud";
2423

2524
export default function DocItem(props) {
2625
const {content: DocContent} = props;
@@ -106,8 +105,6 @@ export default function DocItem(props) {
106105
</MDXContent>
107106
</article>
108107
</div>
109-
110-
111108
</article>
112109
<div>
113110
<KeployCloud />

src/theme/NotFound/Content/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function Index() {
1010
return (
1111
<>
1212
<PageMetadata title="Redirecting..." />
13-
<main className="container margin-vert--xl">
13+
<main className="margin-vert--xl container">
1414
<div className="row">
1515
<div className="col col--6 col--offset-3">
1616
<h1 className="hero__title">Redirecting to home page...</h1>

versioned_docs/version-1.0.0/concepts/what-are-keploy-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords:
1212

1313
### 1. Convert API calls from anywhere to Test-Case
1414

15-
Keploy captures all the API calls and subsequent network traffic served by the application. You can use any existing API management tools like [Postman](https://www.postman.com/), [Curl](https://curl.se/) to generate test-case.
15+
Keploy captures all the API calls and subsequent network traffic served by the application. You can use any existing API management tools like Postman, curl to generate test-case.
1616

1717
<img src="/docs/img/record-api.gif?raw=true" width="80%" alt="API Tools"/>
1818

versioned_docs/version-1.0.0/go/quickstart/echo-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ go run handler.go main.go
4848

4949
## Generate testcases
5050

51-
To generate testcases we just need to **make some API calls.** You can use [Postman](https://www.postman.com/), or simply `curl`
51+
To generate testcases we just need to **make some API calls.** You can use Postman or simply `curl`
5252

5353
### 1. Generate shortened url
5454

versioned_docs/version-1.0.0/go/quickstart/gin-mongo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ go run handler.go main.go
4949

5050
## Generate testcases
5151

52-
To generate testcases we just need to **make some API calls.** You can use [Postman](https://www.postman.com/), or simply `curl`
52+
To generate testcases we just need to **make some API calls.** You can use postman or simply `curl`
5353

5454
### 1. Generate shortened url
5555

versioned_docs/version-1.0.0/go/quickstart/gorillamux-redis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ keywords:
1616

1717
# Contact Keeper Sample App
1818

19-
A sample contact keeper app to test Keploy integration capabilities using [Gorilla Mux](https://pkg.go.dev/github.com/gorilla/mux) and Redis.
19+
A sample contact keeper app to test Keploy integration capabilities using Gorilla Mux and Redis.
2020

2121
## Installation Setup
2222

@@ -52,7 +52,7 @@ Open in Gitpod
5252

5353
## Generate testcases
5454

55-
To generate testcases we just need to make some API calls. You can use [Postman](https://www.postman.com/), or simply `curl`
55+
To generate testcases we just need to make some API calls. You can use postman , or simply `curl`
5656

5757
### Store the contact details
5858

0 commit comments

Comments
 (0)