import type { CSSProperties, ReactElement } from "react";
type SocialLink = {
href: string;
label: string;
color: string;
icon: (props: { className?: string }) => ReactElement;
};
const socialLinks: SocialLink[] = [
{
href: "https://x.com/home",
label: "X",
color: "#525252",
icon: (props) => (
),
},
{
href: "https://bsky.app/profile/neeldhara.bsky.social",
label: "Bluesky",
color: "#4f83b8",
icon: (props) => (
),
},
{
href: "https://www.linkedin.com/in/neeldhara-misra-a54b6920/",
label: "LinkedIn",
color: "#496f9e",
icon: (props) => (
),
},
{
href: "https://mathstodon.xyz/@neeldhara",
label: "Mastodon",
color: "#7464a8",
icon: (props) => (
),
},
{
href: "https://www.youtube.com/@neeldhara",
label: "YouTube",
color: "#b55252",
icon: (props) => (
),
},
{
href: "https://www.instagram.com/neeldharamisra",
label: "Instagram",
color: "#9a6b8c",
icon: (props) => (
),
},
];
export default function SocialLinks({ className = "" }: { className?: string }) {
return (
);
}