From 8d449206d2ba6fd69e989c141d7df998167c082d Mon Sep 17 00:00:00 2001 From: Citali Date: Sat, 27 Dec 2025 13:06:43 +0100 Subject: [PATCH] Add linkree to socials --- src/app/(normal)/page.tsx | 4 ++-- src/components/SocialLinks.tsx | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/src/app/(normal)/page.tsx b/src/app/(normal)/page.tsx index 72de310..a96089e 100644 --- a/src/app/(normal)/page.tsx +++ b/src/app/(normal)/page.tsx @@ -1,5 +1,5 @@ import { SocialLinks } from "@/components/SocialLinks"; -import { ArrowBigRight } from "lucide-react"; +import Link from "next/link"; export default function Home() { return ( @@ -13,7 +13,7 @@ export default function Home() { I'm an illustrator, character designer, miniature painter, 3d modeller, makeup artist and much more and happy to show you things i've created.

- If you want to commission me
you can find all the information you need here:
Linktree + If you want to commission me
you can find all the information you need here:
Commissions

diff --git a/src/components/SocialLinks.tsx b/src/components/SocialLinks.tsx index f98f4b4..d445030 100644 --- a/src/components/SocialLinks.tsx +++ b/src/components/SocialLinks.tsx @@ -1,12 +1,13 @@ import { siBluesky, + siLinktree, siMastodon, siPaypal, siTelegram, type SimpleIcon, } from "simple-icons"; -type SocialKey = "paypal" | "telegram" | "mastodon" | "bluesky"; +type SocialKey = "paypal" | "telegram" | "mastodon" | "bluesky" | "linktree"; const SOCIALS: Record< SocialKey, @@ -32,6 +33,11 @@ const SOCIALS: Record< icon: siBluesky, href: "https://bsky.app/profile/gaertan.bsky.social", }, + linktree: { + label: "Linktree", + icon: siLinktree, + href: "https://linktr.ee/gaertan", + }, }; function BrandSvg({ icon }: { icon: SimpleIcon }) { @@ -48,7 +54,7 @@ function BrandSvg({ icon }: { icon: SimpleIcon }) { } export function SocialLinks({ - items = ["paypal", "telegram", "mastodon", "bluesky"], + items = ["paypal", "telegram", "mastodon", "bluesky", "linktree"], size = "md", }: { items?: SocialKey[];