Openstatus
www.openstatus.dev
1import type { ValidIcon } from "@/components/icons";
2
3export type Social = {
4 title: string;
5 href: string;
6 icon: ValidIcon;
7};
8
9export const socialsConfig: Social[] = [
10 {
11 title: "Discord",
12 href: "/discord",
13 icon: "discord",
14 },
15 {
16 title: "GitHub",
17 href: "/github",
18 icon: "github",
19 },
20 {
21 title: "Bluesky",
22 href: "https://bsky.app/profile/openstatus.dev",
23 icon: "bluesky",
24 },
25 {
26 title: "Twitter",
27 href: "/twitter",
28 icon: "twitter",
29 },
30 {
31 title: "LinkedIn",
32 href: "/linkedin",
33 icon: "linkedin",
34 },
35];