Skip to content

Commit

Permalink
Merge pull request #81 from keploy/correct-cta
Browse files Browse the repository at this point in the history
correcting-cta
  • Loading branch information
TvisharajiK authored Oct 30, 2024
2 parents 6f6b111 + 77b5f70 commit 62e9b6f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions components/hero.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
/* eslint-disable @typescript-eslint/no-unsafe-call */
"use client";
import VideoThumb from '@/public/images/demo-thumbnail.png';
import ModalVideo from '@/components/modal-video';
import Image from "next/image";
import TestimonialImage from "@/public/images/users/Nutanix_Logo.svg";
import React from "react";
import CopyButton from './utils/copyButton';
import { TrustedBy } from './trustedBy';
Expand All @@ -15,7 +13,7 @@ export default function Hero() {
<section className="relative">

{/* Illustration behind hero content */}
<div className="absolute left-1/2 transform -translate-x-1/2 bottom-0 pointer-events-none -z-1 " aria-hidden="true">
<div className="absolute left-1/2 transform -translate-x-1/2 bottom-0 pointer-events-none z-0" aria-hidden="true">
<svg width="1360" height="578" viewBox="0 0 1360 578" xmlns="http://www.w3.org/2000/svg">
<defs>
<linearGradient x1="50%" y1="0%" x2="50%" y2="100%" id="illustration-01">
Expand All @@ -37,7 +35,7 @@ export default function Hero() {
<div className="pt-32 pb-12 md:pt-40 md:pb-20 gap-16">

{/* Section header */}
<div className=" text-center pb-12 md:pb-16">
<div className="text-center pb-12 md:pb-16">
<p className="text-xl sm:text-2xl text-accent-200 mb-4 leading-snug sm:leading-normal"
data-aos="zoom-y-out" data-aos-delay="150">
2 minutes to 90% test coverage!
Expand Down Expand Up @@ -66,19 +64,21 @@ 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="https://www.github.com/keploy/keploy"
target="_blank"
rel="noopener noreferrer"
className="btn text-secondary-300 bg-primary-300 hover:text-gradient-500 w-full sm:w-auto sm:mb-0"
href="https://marketplace.visualstudio.com/items?itemName=Keploy.keployio"
>
Try Open Source
Try VS Code Extension
</Link>
</div>
<div className='mb-4'>
{/* Wrapping Link with NeonButton */}
<Link
className="btn text-white bg-green-900 hover:text-emerald-200 w-full sm:w-auto sm:mb-0"
href="https://forms.gle/waYcLSASm9dfE9tC9"
href="https://app.keploy.io/signin"
>
Join Cloud Waitlist
Sign In to Keploy Console
</Link>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions components/ui/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ export default function Header() {
</div>
<div className="ml-3">
<Link
href="https://forms.gle/waYcLSASm9dfE9tC9"
href="https://app.keploy.io/signin"
target="_blank"
className="btn-sm text-gray-200 bg-secondary-300 hover:text-primary-300 "
>
<span>Join Waitlist</span>
<span>Sign In</span>
{/*<svg className="w-3 h-3 fill-current hover:text-primary-300 shrink-0 ml-2 -mr-1" viewBox="0 0 12 12" xmlns="http://www.w3.org/2000/svg">*/}
{/* <path d="M11.707 5.293L7 .586 5.586 2l3 3H0v2h8.586l-3 3L7 11.414l4.707-4.707a1 1 0 000-1.414z" fillRule="nonzero" />*/}
{/*</svg>*/}
Expand Down

0 comments on commit 62e9b6f

Please sign in to comment.