diff --git a/src/components/KeployCloud.js b/src/components/KeployCloud.js index 1650346c8..8d20ddd01 100644 --- a/src/components/KeployCloud.js +++ b/src/components/KeployCloud.js @@ -1,30 +1,33 @@ import React from "react"; +import Link from "@docusaurus/Link"; export const KeployCloud = () => { return (
-
-

Questions? 🤔💭

-

- For any support please{" "} - - join keploy slack community - {" "} - to get help from fellow users, or{" "} - - book a demo - {" "} - if you're exploring enterprise use cases. -

+
+ + Have questions? + + + We're here to help! + +
+
+ + Join Slack to chat + + + Book a Demo +
); diff --git a/src/components/WhatIsKeploy.js b/src/components/WhatIsKeploy.js index ce6034143..d04f0ef5d 100644 --- a/src/components/WhatIsKeploy.js +++ b/src/components/WhatIsKeploy.js @@ -44,7 +44,7 @@ const cards = [ id: "comparison", title: "Keploy vs traditional testing tools", description: "Where record–replay and AI-generated flows fit vs Postman, contract testing, and mocking libraries.", - link: "/docs/keploy-explained/why-keploy/", + link: "/keploy-explained/why-keploy/", tone: "secondary", icon: ( diff --git a/src/theme/DocItem/index.js b/src/theme/DocItem/index.js index e4fcc886f..30b92c07a 100644 --- a/src/theme/DocItem/index.js +++ b/src/theme/DocItem/index.js @@ -245,10 +245,11 @@ export default function DocItem(props) { -
+
+
diff --git a/src/theme/DocPaginator/index.js b/src/theme/DocPaginator/index.js new file mode 100644 index 000000000..4f2d4484f --- /dev/null +++ b/src/theme/DocPaginator/index.js @@ -0,0 +1,69 @@ +import React from 'react'; +import Link from '@docusaurus/Link'; +import Translate, {translate} from '@docusaurus/Translate'; + +function PaginatorNavLink({permalink, title, subLabel, isNext}) { + return ( + + {subLabel && ( +
+ {subLabel} +
+ )} +
+ {title} +
+ + ); +} + +export default function DocPaginator(props) { + const {previous, next} = props; + if (!previous && !next) { + return null; + } + return ( + + ); +}