Skip to content

Commit

Permalink
add CTA at top for /sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
dphuang2 committed Mar 26, 2024
1 parent 6aa4bca commit b4bcadb
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export function HeaderSimple() {
target="_blank"
href="/sdk"
>
SDKs
SDKs for Public APIs
</a>
<a
className="text-gray-600 hover:text-black"
Expand Down
23 changes: 22 additions & 1 deletion konfigthis.com/src/components/HeroBullets/HeroBullets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,14 @@ import {
clsx,
} from "@mantine/core";
import { useOs } from "@mantine/hooks";
import { IconCalendarEvent, IconExternalLink } from "@tabler/icons-react";
import {
IconArrowBadgeRightFilled,
IconArrowBigRightFilled,
IconArrowRight,
IconCalendarEvent,
IconChevronRight,
IconExternalLink,
} from "@tabler/icons-react";
import { useState, useEffect } from "react";

const useStyles = createStyles((theme) => ({
Expand Down Expand Up @@ -122,6 +129,20 @@ export function HeroBullets() {
return (
<div className="pt-16">
<Container className={classes.wrapper} size={1400}>
<div className="text-center">
<div className="relative inline-flex group text-center mb-10">
<div className="absolute transition-all duration-1000 opacity-70 -inset-px bg-gradient-to-r from-[#44BCFF] via-[#FF44EC] to-[#FF675E] rounded-full blur-md group-hover:opacity-100 group-hover:-inset-1 group-hover:duration-200 animate-tilt"></div>
<a
href="/sdk"
title="Get quote now"
className="relative inline-flex ring-1 ring-blue-400 group-hover:ring-blue-600 items-center justify-center px-4 py-2 text-sm font-semibold text-slate-700 group-hover:text-slate-900 transition-all duration-200 bg-white rounded-full"
role="button"
>
<span>Writing API integrations?</span>
<IconChevronRight className="h-4 ml-0 group-hover:ml-1 transition-all" />
</a>
</div>
</div>
<div className={classes.inner}>
<Title className={classes.title}>
<Text
Expand Down

0 comments on commit b4bcadb

Please sign in to comment.