From 63c90bc8eb9f03f10808afbb5bcebead1c8dc553 Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Tue, 16 Sep 2025 01:22:15 +0530 Subject: [PATCH 1/4] Update QuickStartFilter Signed-off-by: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> --- src/components/QuickStartFilter.js | 31 ++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/src/components/QuickStartFilter.js b/src/components/QuickStartFilter.js index 15ad87f80..5b2afdebb 100644 --- a/src/components/QuickStartFilter.js +++ b/src/components/QuickStartFilter.js @@ -21,8 +21,9 @@ const IconWrapper = ({icon, bg}) => ( justifyContent: "center", borderRadius: "50%", backgroundColor: bg || "#f3f4f6", - boxShadow: "0 3px 6px rgba(0,0,0,0.1)", + boxShadow: "0 4px 12px rgba(0,0,0,0.08)", transition: "transform 0.2s ease", + marginTop: "1rem", }} className="icon-wrapper" > @@ -45,32 +46,32 @@ export default function QuickstartFilter({defaultLanguage = null}) { const languages = [ { name: "Go", - icon: , + icon: , bg: "#E0F7FA", }, { name: "Python", - icon: , + icon: , bg: "#E8F0FE", }, { name: "Java", - icon: , + icon: , bg: "#FDEDED", }, { name: "JS/TS", - icon: , + icon: , bg: "#FFF8E1", }, { name: "Rust", - icon: , + icon: , bg: "#FFF3E0", }, { name: "C#", - icon: , + icon: , bg: "#EDE7F6", }, ]; @@ -78,12 +79,12 @@ export default function QuickstartFilter({defaultLanguage = null}) { const servers = [ { name: "Local", - icon: , + icon: , bg: "#FFF3E0", }, { name: "Docker", - icon: , + icon: , bg: "#E3F2FD", }, ]; @@ -172,7 +173,7 @@ export default function QuickstartFilter({defaultLanguage = null}) { // Styles const headingStyle = { textAlign: "left", - marginLeft: "1rem", + marginLeft: "2rem", fontSize: "1.4rem", fontWeight: "600", }; @@ -183,14 +184,14 @@ const serverContainer = { gap: "1.5rem", justifyContent: "flex-start", marginTop: "1.5rem", - marginLeft: "1rem", + marginLeft: "2rem", }; const stepContainer = { display: "flex", flexWrap: "wrap", gap: "1.5rem", - marginLeft: "1rem", + marginLeft: "2rem", justifyContent: "flex-start", marginTop: "1.5rem", }; @@ -198,7 +199,7 @@ const stepContainer = { const buttonCard = { border: "2px solid #ddd", borderRadius: "12px", - padding: "1rem 2rem", + padding: ".5rem 2rem", cursor: "pointer", background: "#fff", transition: "all 0.2s ease", @@ -210,12 +211,14 @@ const gridContainer = { gap: "1.5rem", gridTemplateColumns: "repeat(auto-fit, minmax(250px, 1fr))", marginTop: "2rem", + paddingLeft: "2rem", + paddingRight: "2rem", }; const cardStyle = { border: "1px solid #eee", borderRadius: "12px", - padding: "1rem", + padding: "1.5rem", background: "#fff", boxShadow: "0 2px 6px rgba(0, 0, 0, 0.08)", }; From 1cae4057d0ca4d0d0f7f16582ea233ec3ab42d10 Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Tue, 16 Sep 2025 23:13:05 +0530 Subject: [PATCH 2/4] Update filteredQuickstarts comp Signed-off-by: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> --- src/components/QuickStartFilter.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/components/QuickStartFilter.js b/src/components/QuickStartFilter.js index 5b2afdebb..50954fb8d 100644 --- a/src/components/QuickStartFilter.js +++ b/src/components/QuickStartFilter.js @@ -221,12 +221,17 @@ const cardStyle = { padding: "1.5rem", background: "#fff", boxShadow: "0 2px 6px rgba(0, 0, 0, 0.08)", + display: "flex", + flexDirection: "column", + height: "100%", + minHeight: "200px" }; const linkStyle = { - marginTop: "0.8rem", + marginTop: "auto", display: "inline-block", color: "#f97316", fontWeight: "bold", textDecoration: "none", + paddingTop: ".8rem", }; From 3ff3ffb55cdbdb19350fe5e527db76747e71b6ea Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Thu, 18 Sep 2025 20:28:02 +0530 Subject: [PATCH 3/4] Remove redundant go Signed-off-by: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> --- versioned_docs/version-2.0.0/keploy-explained/debugger-guide.md | 2 +- versioned_docs/version-3.0.0/keploy-explained/debugger-guide.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/versioned_docs/version-2.0.0/keploy-explained/debugger-guide.md b/versioned_docs/version-2.0.0/keploy-explained/debugger-guide.md index d736e8599..59a746190 100644 --- a/versioned_docs/version-2.0.0/keploy-explained/debugger-guide.md +++ b/versioned_docs/version-2.0.0/keploy-explained/debugger-guide.md @@ -18,7 +18,7 @@ To bring up the **Run and Debug** view, select the **Run and Debug** icon in the If running and debugging is not yet configured (no `launch.json` has been created), VS Code shows the Run start view. -Click on **create a launch.json file** 👉 **Go** 👉 **Go: Launch Package** +Click on **create a launch.json file** 👉 **Go** : Launch Package** Navigate to `launch.json` to begin crafting JSON objects. diff --git a/versioned_docs/version-3.0.0/keploy-explained/debugger-guide.md b/versioned_docs/version-3.0.0/keploy-explained/debugger-guide.md index d736e8599..59a746190 100644 --- a/versioned_docs/version-3.0.0/keploy-explained/debugger-guide.md +++ b/versioned_docs/version-3.0.0/keploy-explained/debugger-guide.md @@ -18,7 +18,7 @@ To bring up the **Run and Debug** view, select the **Run and Debug** icon in the If running and debugging is not yet configured (no `launch.json` has been created), VS Code shows the Run start view. -Click on **create a launch.json file** 👉 **Go** 👉 **Go: Launch Package** +Click on **create a launch.json file** 👉 **Go** : Launch Package** Navigate to `launch.json` to begin crafting JSON objects. From 1b49a1d1773c4b3fd2bd2ee839bd3cb7cb3bce16 Mon Sep 17 00:00:00 2001 From: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> Date: Thu, 18 Sep 2025 20:42:42 +0530 Subject: [PATCH 4/4] Revert changes Signed-off-by: Raj Gupta <150777419+Raj-G07@users.noreply.github.com> --- src/components/QuickStartFilter.js | 38 ++++++++++++------------------ 1 file changed, 15 insertions(+), 23 deletions(-) diff --git a/src/components/QuickStartFilter.js b/src/components/QuickStartFilter.js index 50954fb8d..15ad87f80 100644 --- a/src/components/QuickStartFilter.js +++ b/src/components/QuickStartFilter.js @@ -21,9 +21,8 @@ const IconWrapper = ({icon, bg}) => ( justifyContent: "center", borderRadius: "50%", backgroundColor: bg || "#f3f4f6", - boxShadow: "0 4px 12px rgba(0,0,0,0.08)", + boxShadow: "0 3px 6px rgba(0,0,0,0.1)", transition: "transform 0.2s ease", - marginTop: "1rem", }} className="icon-wrapper" > @@ -46,32 +45,32 @@ export default function QuickstartFilter({defaultLanguage = null}) { const languages = [ { name: "Go", - icon: , + icon: , bg: "#E0F7FA", }, { name: "Python", - icon: , + icon: , bg: "#E8F0FE", }, { name: "Java", - icon: , + icon: , bg: "#FDEDED", }, { name: "JS/TS", - icon: , + icon: , bg: "#FFF8E1", }, { name: "Rust", - icon: , + icon: , bg: "#FFF3E0", }, { name: "C#", - icon: , + icon: , bg: "#EDE7F6", }, ]; @@ -79,12 +78,12 @@ export default function QuickstartFilter({defaultLanguage = null}) { const servers = [ { name: "Local", - icon: , + icon: , bg: "#FFF3E0", }, { name: "Docker", - icon: , + icon: , bg: "#E3F2FD", }, ]; @@ -173,7 +172,7 @@ export default function QuickstartFilter({defaultLanguage = null}) { // Styles const headingStyle = { textAlign: "left", - marginLeft: "2rem", + marginLeft: "1rem", fontSize: "1.4rem", fontWeight: "600", }; @@ -184,14 +183,14 @@ const serverContainer = { gap: "1.5rem", justifyContent: "flex-start", marginTop: "1.5rem", - marginLeft: "2rem", + marginLeft: "1rem", }; const stepContainer = { display: "flex", flexWrap: "wrap", gap: "1.5rem", - marginLeft: "2rem", + marginLeft: "1rem", justifyContent: "flex-start", marginTop: "1.5rem", }; @@ -199,7 +198,7 @@ const stepContainer = { const buttonCard = { border: "2px solid #ddd", borderRadius: "12px", - padding: ".5rem 2rem", + padding: "1rem 2rem", cursor: "pointer", background: "#fff", transition: "all 0.2s ease", @@ -211,27 +210,20 @@ const gridContainer = { gap: "1.5rem", gridTemplateColumns: "repeat(auto-fit, minmax(250px, 1fr))", marginTop: "2rem", - paddingLeft: "2rem", - paddingRight: "2rem", }; const cardStyle = { border: "1px solid #eee", borderRadius: "12px", - padding: "1.5rem", + padding: "1rem", background: "#fff", boxShadow: "0 2px 6px rgba(0, 0, 0, 0.08)", - display: "flex", - flexDirection: "column", - height: "100%", - minHeight: "200px" }; const linkStyle = { - marginTop: "auto", + marginTop: "0.8rem", display: "inline-block", color: "#f97316", fontWeight: "bold", textDecoration: "none", - paddingTop: ".8rem", };