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/devscribe/hero.tsx b/components/devscribe/hero.tsx index 5723bdf5..a0a06536 100755 --- a/components/devscribe/hero.tsx +++ b/components/devscribe/hero.tsx @@ -50,9 +50,9 @@ export default function Hero() { {/* Section header */}
-

Event where Open Source meets Practical Productivity

+

Conference where Open Source connects Productivity

-

Share, Learn, Innovate

+

● Share ● Learn ● Innovate

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 */} diff --git a/components/utils/common.tsx b/components/utils/common.tsx index c791e670..2800e226 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' + title: 'YouTube', + description:'Learn with Keploy team and its community videos' }, { href: 'https://github.com/keploy/keploy', icon: , - title: 'Github', + 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 +