From 6733263b97e6e8102eccef161c28c77aa3c2b374 Mon Sep 17 00:00:00 2001 From: amaan-bhati Date: Fri, 29 May 2026 18:05:54 +0530 Subject: [PATCH 1/3] chore: replace the slack url to updated invite url Signed-off-by: amaan-bhati --- CONTRIBUTING.md | 2 +- index.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7136829..1c4b78a 100755 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ Thank you for your interest in Keploy and for taking the time to contribute to this project. 🙌 Keploy is a project by developers for developers and there are a lot of ways you can contribute. -If you don't know where to start contributing, ask us on our [Slack channel](https://join.slack.com/t/keploy/shared_invite/zt-357qqm9b5-PbZRVu3Yt2rJIa6ofrwWNg). +If you don't know where to start contributing, ask us on our [Slack channel](https://join.slack.com/t/keploy/shared_invite/zt-3zcnuqfgl-WYK1NMhslVHsCtNcA1ULwA). ## Code of conduct diff --git a/index.html b/index.html index 566392a..f126188 100755 --- a/index.html +++ b/index.html @@ -237,7 +237,7 @@

An Open-Source Prorgam for Students, Professionals, and Freelancers

Register Now! - + Join Community @@ -734,7 +734,7 @@

Join Our Commun

Get Involved In The Community Today!

Slack Image - +
From 8ee9a003812699e0744c3316d9f5e7612b74170e Mon Sep 17 00:00:00 2001 From: amaan-bhati Date: Fri, 29 May 2026 18:16:35 +0530 Subject: [PATCH 2/3] fix: replace invalid button-anchor nesting with styled anchor in join slack CTA Signed-off-by: amaan-bhati --- css/main.css | 8 +++----- index.html | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/css/main.css b/css/main.css index 1507cca..633c1b7 100755 --- a/css/main.css +++ b/css/main.css @@ -3920,16 +3920,14 @@ html.no-csstransitions .home-content__main { } .join-btn{ + display: inline-block; margin:0 auto; background-color: #00163D; border-radius: 5px; - color:#FF914D; + color: white; outline: none; border:0px; -} - -.join-btn a{ - color:white + text-decoration: none; } .countdown-timer{ diff --git a/index.html b/index.html index f126188..286db9f 100755 --- a/index.html +++ b/index.html @@ -734,7 +734,7 @@

Join Our Commun

Get Involved In The Community Today!

Slack Image - + Join Slack
From 0f35ddcef25208a78882363075a40b528f802871 Mon Sep 17 00:00:00 2001 From: amaan-bhati Date: Fri, 29 May 2026 18:24:53 +0530 Subject: [PATCH 3/3] fix: restore tap target padding and add focus-visible outline to join-slack link Signed-off-by: amaan-bhati --- css/main.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/css/main.css b/css/main.css index 633c1b7..26644ba 100755 --- a/css/main.css +++ b/css/main.css @@ -3922,14 +3922,19 @@ html.no-csstransitions .home-content__main { .join-btn{ display: inline-block; margin:0 auto; + padding: 6px 16px; background-color: #00163D; border-radius: 5px; color: white; - outline: none; border:0px; text-decoration: none; } +.join-btn:focus-visible{ + outline: 2px solid #FF914D; + outline-offset: 2px; +} + .countdown-timer{ pointer-events: none; }