Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
9ad61e6
fix(docs_page): mobile_view
Srinu346 Oct 28, 2025
91a1412
Merge branch 'keploy:main' into fix/landingpage-product-section
Srinu346 Oct 29, 2025
a1bd6ea
fix(docs_page): prettier_issue
Srinu346 Oct 30, 2025
d61d029
fix(docs_page): prettier_issue
Srinu346 Oct 30, 2025
af21e07
Merge branch 'main' into fix/landingpage-product-section
Achanandhi-M Nov 4, 2025
8406497
Merge branch 'main' into fix/landingpage-product-section
Achanandhi-M Nov 6, 2025
76b2106
Merge branch 'main' into fix/landingpage-product-section
Achanandhi-M Nov 12, 2025
0b12f1a
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Nov 21, 2025
92ea4a9
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Nov 29, 2025
037d24f
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Dec 12, 2025
ec7768e
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Dec 15, 2025
7760b74
fix(ui): docspage-mobileview
Srinu346 Dec 15, 2025
a4df199
fix/docspage-mobile-view
Srinu346 Dec 26, 2025
48af392
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Dec 29, 2025
5529e7d
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Dec 30, 2025
441f93e
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Jan 1, 2026
b83cafa
fix/identation-error
Srinu346 Jan 1, 2026
d113372
Merge branch 'fix/landingpage-product-section' of https://github.com/…
Srinu346 Jan 1, 2026
71ddd12
Merge branch 'main' into fix/landingpage-product-section
Srinu346 Jan 12, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/components/Product.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl";
function UTG() {
return (
<div className="rounded-lg">
<ul className="grid auto-cols-[300px] grid-flow-col gap-3 lg:gap-5">
<ul className="product-grid grid gap-3 lg:gap-5">
<li className="mt-5 flex flex-col space-y-3 text-lg">
<Link
className="text-foreground-light flex-grow text-sm"
Expand Down Expand Up @@ -241,10 +241,9 @@ export const Products = () => {
Products 🛠️
</h2>
<p className="text-l max-w-3xxl">
Keploy provides three key products that help you streamline your testing
workflow:
Keploy provides three key products that help you streamline your
testing workflow:
</p>

<div className="grid gap-4 sm:grid-cols-3 xl:gap-6">
<UTG />
</div>
Expand Down
13 changes: 13 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,19 @@ td img {
}
}

.product-grid {
grid-auto-columns: 100%;
grid-auto-flow: row;
}

@media screen and (min-width: 768px) {
.product-grid {
grid-auto-columns: 300px;
grid-auto-flow: column;
}
}


.docs-image-legend-wrapper {
width: 100%;
margin: 0;
Expand Down