Skip to content

Commit

Permalink
Merge branch 'main' into lighthouse-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
khareyash05 authored Dec 24, 2024
2 parents cf8edf8 + 13848a5 commit 82b89c3
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 14 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions components/devscribe/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ export default function Hero() {
{/* Section header */}
<div className="max-w-6xl mx-auto text-center pb-12 md:pb-16">

<h3 className="h3 mt-16 mb-4 font-semibold " data-aos="fade-up">Event where Open Source meets Practical Productivity</h3>
<h3 className="h3 mt-16 mb-4 font-semibold " data-aos="fade-up">Conference where Open Source connects Productivity</h3>

<h3 className="h3 mb-16 whitespace-pre font-architects-daughter text-primary-400" data-aos="fade-up">Share, Learn, Innovate</h3>
<h3 className="h3 mb-16 whitespace-pre font-architects-daughter text-primary-400" data-aos="fade-up">&#9679 Share &#9679 Learn &#9679 Innovate</h3>

<div className="max-w-xs mx-auto sm:max-w-none sm:flex sm:justify-center">

Expand Down
15 changes: 9 additions & 6 deletions components/hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -108,12 +109,14 @@ export default function Hero() {
<div className="mb-4">
{/* Wrapping Link with NeonButton */}
<Link
className="btn text-secondary-300 bg-primary-300 hover:text-gradient-500 w-full sm:w-auto sm:mb-0"
href={isMobile ? "https://marketplace.visualstudio.com/items?itemName=Keploy.keployio" : "vscode:extension/Keploy.keployio"} // Conditionally change the href
target="_blank"
>
Try VS Code Extension
</Link>
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
<OpenInNewIcon className="transition-all duration-500 ease-out group-hover:scale-110 group-hover:translate-x-0.5 group-hover:-translate-y-0.5 h-5 w-5" />
</Link>
</div>
<div className='mb-4'>
{/* Wrapping Link with NeonButton */}
Expand Down
12 changes: 6 additions & 6 deletions components/utils/common.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,26 +114,26 @@ export const socialLinks: SocialLink[] = [
href: 'https://twitter.com/Keployio',
icon: <TwitterIcon/>,
title: 'Twitter',
description:`Let's talk about regression testing!`
description:`Follow every update Keploy shares!`
},
{
href: 'https://www.youtube.com/channel/UC6OTg7F4o0WkmNtSoob34lg',
icon: <YoutubeIcon/>,
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: <GithubIcon/>,
title: 'Github',
title: 'GitHub',
description:'Contribute code to Keploy or report a bug'

},
{
href: 'https://join.slack.com/t/keploy/shared_invite/zt-2poflru6f-_VAuvQfCBT8fDWv1WwSbkw',
icon: <SlackIcon/>,
title: 'Slack',
description:'Connect and chat with other Keploy users'
description:'Connect and chat with a community of Keploy users'

},
{
Expand Down Expand Up @@ -268,4 +268,4 @@ export const socialLinks: SocialLink[] = [
SvgComponent: MaterialSymbolsLightEarlyOnOutline,
},
];


0 comments on commit 82b89c3

Please sign in to comment.