diff --git a/components/utils/common.tsx b/components/utils/common.tsx
index c791e670..ba9f7704 100644
--- a/components/utils/common.tsx
+++ b/components/utils/common.tsx
@@ -114,18 +114,18 @@ export const socialLinks: SocialLink[] = [
href: 'https://twitter.com/Keployio',
icon:
,
title: 'Twitter',
- description:`Let's talk about regression testing!`
+ description:`Follow every update Keploy shares!`
},
{
href: 'https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg',
- icon:
,
- title: 'Youtube',
- description:'Learn with Keploy team and community videos'
+ icon:
,
+ title: 'YouTube',
+ description:'Learn with Keploy team and its community videos'
},
{
href: 'https://github.com/keploy/keploy',
- icon:
,
- title: 'Github',
+ icon:
,
+ title: 'GitHub',
description:'Contribute code to Keploy or report a bug'
},
@@ -133,7 +133,7 @@ export const socialLinks: SocialLink[] = [
href: 'https://join.slack.com/t/keploy/shared_invite/zt-2poflru6f-_VAuvQfCBT8fDWv1WwSbkw',
icon:
,
title: 'Slack',
- description:'Connect and chat with other Keploy users'
+ description:'Connect and chat with a community of Keploy users'
},
{
@@ -268,4 +268,4 @@ export const socialLinks: SocialLink[] = [
SvgComponent: MaterialSymbolsLightEarlyOnOutline,
},
];
-
\ No newline at end of file
+
From 2dbad274d75858015c4b4e7e0eef66a2dfc9b64c Mon Sep 17 00:00:00 2001
From: Manas Manohar <21006907+manasmanohar@users.noreply.github.com>
Date: Tue, 24 Dec 2024 17:19:10 +0530
Subject: [PATCH 2/3] chore: update CTA link to join cloud waiting list (#161)
---
components/hero.tsx | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/components/hero.tsx b/components/hero.tsx
index 1fed5d14..aad5f946 100644
--- a/components/hero.tsx
+++ b/components/hero.tsx
@@ -10,6 +10,7 @@ import { TrustedBy } from './trustedBy';
import Link from 'next/link';
import APItext from "@/public/images/apiText.png";
import Banner from './ui/banner';
+import OpenInNewIcon from '@mui/icons-material/OpenInNew';
export default function Hero() {
const [isMobile, setIsMobile] = useState(false);
@@ -108,12 +109,14 @@ export default function Hero() {
{/* Wrapping Link with NeonButton */}
- Try VS Code Extension
-
+ className="btn text-secondary-300 bg-primary-300 hover:text-gradient-500 w-full sm:w-auto sm:mb-0 group flex items-center justify-center gap-2"
+ href="https://docs.google.com/forms/d/e/1FAIpQLSdj9q7dyRh3D7ZzRExHLWRRkNPOnLnFfrbKqSwqH3Ur4HzP4g/viewform"
+ target="_blank"
+ rel="noopener noreferrer"
+ >
+ Join Cloud Waiting List
+
+
{/* Wrapping Link with NeonButton */}
From 13848a53e6af90baa8fb9b3d071d276e441a1247 Mon Sep 17 00:00:00 2001
From: Yash Khare
Date: Tue, 24 Dec 2024 18:00:15 +0530
Subject: [PATCH 3/3] fix: npm run build with pipeline (#162)
Signed-off-by: Yash Khare
---
.github/workflows/build.yml | 22 ++++++++++++++++++++++
components/utils/common.tsx | 4 ++--
2 files changed, 24 insertions(+), 2 deletions(-)
create mode 100644 .github/workflows/build.yml
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..26551638
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,22 @@
+name: Build Workflow
+
+on:
+ pull_request:
+ branches:
+ - "**"
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout Code
+ uses: actions/checkout@v2
+ with:
+ submodules: 'recursive'
+
+ - name: Install Dependencies
+ run: npm install
+
+ - name: Build Next.js App
+ run: npm run build
diff --git a/components/utils/common.tsx b/components/utils/common.tsx
index ba9f7704..2800e226 100644
--- a/components/utils/common.tsx
+++ b/components/utils/common.tsx
@@ -118,13 +118,13 @@ export const socialLinks: SocialLink[] = [
},
{
href: 'https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg',
- icon: ,
+ icon: ,
title: 'YouTube',
description:'Learn with Keploy team and its community videos'
},
{
href: 'https://github.com/keploy/keploy',
- icon: ,
+ icon: ,
title: 'GitHub',
description:'Contribute code to Keploy or report a bug'