From 2dfdaa59166f586809a994c986627a6a44108712 Mon Sep 17 00:00:00 2001 From: Albin Groen Date: Fri, 31 Mar 2023 15:43:51 +0200 Subject: [PATCH] Add sponsor button --- components/Links.tsx | 32 +++++++++++++++++++------------- components/SponsorButton.tsx | 21 +++++++++++++++++++++ 2 files changed, 40 insertions(+), 13 deletions(-) create mode 100644 components/SponsorButton.tsx diff --git a/components/Links.tsx b/components/Links.tsx index da236d4..89c3f49 100644 --- a/components/Links.tsx +++ b/components/Links.tsx @@ -4,6 +4,8 @@ import { CodeBracketIcon, } from "@heroicons/react/24/outline"; import SidebarItem from "./SidebarItem"; +import SponsorButton from "./SponsorButton"; +import Stack from "./Stack"; export const LINKS = [ { @@ -24,19 +26,23 @@ export const LINKS = [ ]; const Links = () => ( - + + + + + ); export default Links; diff --git a/components/SponsorButton.tsx b/components/SponsorButton.tsx new file mode 100644 index 0000000..8ee5ce9 --- /dev/null +++ b/components/SponsorButton.tsx @@ -0,0 +1,21 @@ +import { HeartIcon } from "@heroicons/react/20/solid"; +import classNames from "../lib/classNames"; + +export default function SponsorButton() { + return ( + + Sponsor the developer + + + ); +}