Add linkree to socials
This commit is contained in:
@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user