You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
style(seo): apply prettier 2.8.8 to changed quickstart docs
The PR's editor (and the post-prettier action) had drifted from the
repo's pinned prettier 2.8.8: trailing commas, JSX prop indentation
inside MDX, and a few `<HowTo>` block layouts didn't match. CI's
`prettier --check` over the changed file list was flagging 37 files;
this commit runs `prettier --write` over the same list so the
formatter check passes without rewriting any of the actual content.
Signed-off-by: Neha Gupta <gneha21@yahoo.in>
@@ -47,29 +57,30 @@ export default function Home() {
47
57
// The Article JSON-LD below derives its `headline`/`description` from these
48
58
// same constants so the schema, the rendered <title>, the meta description
49
59
// and the sr-only H1 all agree — single source of truth.
50
-
constdocsHomeTitle="Keploy Documentation — Install, Capture & Replay API Tests";
51
-
constdocsHomeDescription="Install Keploy in 5 minutes, capture real API traffic with eBPF, and replay it as deterministic tests in CI. Quickstarts, SDK references, and integration guides.";
52
-
constarticleSchema=
53
-
docsUrl
54
-
? {
55
-
"@context": "https://schema.org",
56
-
"@type": "Article",
57
-
headline: docsHomeTitle,
58
-
description: docsHomeDescription,
59
-
mainEntityOfPage: {
60
-
"@type": "WebPage",
61
-
"@id": docsUrl,
62
-
},
63
-
publisher: {
64
-
"@type": "Organization",
65
-
name: "Keploy",
66
-
logo: {
67
-
"@type": "ImageObject",
68
-
url: "https://keploy.io/docs/img/favicon.png",
69
-
},
60
+
constdocsHomeTitle=
61
+
"Keploy Documentation — Install, Capture & Replay API Tests";
62
+
constdocsHomeDescription=
63
+
"Install Keploy in 5 minutes, capture real API traffic with eBPF, and replay it as deterministic tests in CI. Quickstarts, SDK references, and integration guides.";
0 commit comments