Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Replace the CTA from try beta to join waitlist #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions components/footer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import styled from "styled-components";
import Logo from "./Logo";

const waitListLink = "https://1q5tgm1f657.typeform.com/to/E96ETDuz";

const FooterStyles = styled.footer`
position: relative;
min-height: 50vh;
Expand Down Expand Up @@ -182,8 +184,8 @@ export default function Footer() {
<FooterStyles>
<MainText>start building with felvin</MainText>
<PillArea>
<LinkExternal href="https://chrome.google.com/webstore/detail/felvin-google-search-enha/dmhgpjahhfannndnaghleelgnpieiljl?hl=en">
<Pill>Try Beta</Pill>
<LinkExternal href={waitListLink}>
<Pill>Join Waitlist</Pill>
</LinkExternal>
{/* <LinkExternal href="https://github.com/felvin-search">
<Pill>Fork on Git</Pill>
Expand Down
2 changes: 1 addition & 1 deletion components/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ const BetaButtonStyle = styled.div`
}
`;
const Comp4 = () => {
return <BetaButtonStyle>Try Beta</BetaButtonStyle>;
return <BetaButtonStyle>Join Waitlist</BetaButtonStyle>;
};
export { Comp4 };

Expand Down
3 changes: 2 additions & 1 deletion components/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Header from "./header";
import HeroArea from "./heroArea";

import { Comp4 } from "./header";
const waitListLink = "https://1q5tgm1f657.typeform.com/to/E96ETDuz";

const LinkExternal = styled.a`
text-decoration: none;
Expand Down Expand Up @@ -192,7 +193,7 @@ export default function Home() {
<SearchForm>
<LinkExternal
target="_blank"
href="https://chrome.google.com/webstore/detail/felvin-google-search-enha/dmhgpjahhfannndnaghleelgnpieiljl?hl=en"
href={waitListLink}
>
<Comp4 hero />
</LinkExternal>
Expand Down
6 changes: 4 additions & 2 deletions components/useCases.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import "swiper/css";
import "swiper/css/effect-coverflow";
import "swiper/css/pagination";

const waitListLink = "https://1q5tgm1f657.typeform.com/to/E96ETDuz";

// import required modules
import { EffectCoverflow, Pagination, Autoplay } from "swiper";
const UseCasesPageStyles = styled.div`
Expand Down Expand Up @@ -286,10 +288,10 @@ export default function UseCasesPage() {
<ExternalLinkArea>
<LinkExternal
target="_blank"
href="https://chrome.google.com/webstore/detail/felvin-google-search-enha/dmhgpjahhfannndnaghleelgnpieiljl?hl=en"
href={waitListLink}
>
<ExternalLinkPill>
<img src="/cloud_down.svg" /> Try the Beta
<img src="/cloud_down.svg" /> Join Waitlist
</ExternalLinkPill>
</LinkExternal>
</ExternalLinkArea>
Expand Down
Loading