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 = () => (
-
- {LINKS.map((LINK) => (
-
- {LINK.label}
-
- ))}
-
+
+
+ {LINKS.map((LINK) => (
+
+ {LINK.label}
+
+ ))}
+
+
+
+
);
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
+
+
+ );
+}