2022-12-24 20:49:01 -05:00
|
|
|
import Box from "@mui/material/Box";
|
|
|
|
import MailIcon from "@mui/icons-material/Mail";
|
|
|
|
import GitHubIcon from "@mui/icons-material/GitHub";
|
|
|
|
import LinkedInIcon from "@mui/icons-material/LinkedIn";
|
|
|
|
import { FaGitlab } from "react-icons/fa";
|
2023-09-18 20:54:59 +00:00
|
|
|
import { SiGitea } from "react-icons/si";
|
2022-12-24 20:49:01 -05:00
|
|
|
|
|
|
|
const socialLinks = [
|
|
|
|
{
|
|
|
|
url: "https://www.linkedin.com/in/elijah-parker-dunemask/",
|
|
|
|
icon: <LinkedInIcon />,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
url: "mailto: elijahglennparker@outlook.com",
|
|
|
|
icon: <MailIcon />,
|
|
|
|
},
|
2023-09-18 20:54:59 +00:00
|
|
|
{
|
|
|
|
url: "https://gitea.dunemask.net/dunemask",
|
|
|
|
icon: <SiGitea size="1.5rem" />,
|
|
|
|
},
|
2022-12-24 20:49:01 -05:00
|
|
|
{
|
|
|
|
url: "https://gitlab.com/dunemask",
|
2023-09-18 20:54:59 +00:00
|
|
|
icon: <FaGitlab size="1.5rem" />,
|
2022-12-24 20:49:01 -05:00
|
|
|
},
|
|
|
|
{
|
|
|
|
url: "https://github.com/dunemask",
|
|
|
|
icon: <GitHubIcon />,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
export default function Social() {
|
|
|
|
return (
|
|
|
|
<Box style={{ padding: 10, scrollMarginTop: "4rem" }} id="contact">
|
2023-02-03 13:25:41 +00:00
|
|
|
<Box style={{ boxShadow: "none", display: "flex", padding: 16 }}>
|
|
|
|
<h3 style={{ paddingRight: 20 }}>Social</h3>
|
|
|
|
<Box style={{ display: "flex", marginLeft: "auto", flexWrap: "wrap" }}>
|
|
|
|
{socialLinks.map((v, i) => (
|
|
|
|
<a
|
|
|
|
key={i}
|
|
|
|
href={v.url}
|
2023-09-18 20:54:59 +00:00
|
|
|
style={{ margin: "auto 0", color: "black", padding: "0px 5px" }}
|
2023-02-03 13:25:41 +00:00
|
|
|
>
|
|
|
|
{v.icon}
|
|
|
|
</a>
|
|
|
|
))}
|
|
|
|
</Box>
|
|
|
|
</Box>
|
2022-12-24 20:49:01 -05:00
|
|
|
</Box>
|
|
|
|
);
|
|
|
|
}
|