Logo update
This commit is contained in:
parent
c3bd12a761
commit
4c208acc59
50 changed files with 9592 additions and 577 deletions
|
@ -1,5 +1,3 @@
|
|||
import Accordion from "@mui/material/Accordion";
|
||||
import AccordionSummary from "@mui/material/AccordionSummary";
|
||||
import Box from "@mui/material/Box";
|
||||
import MailIcon from "@mui/icons-material/Mail";
|
||||
import GitHubIcon from "@mui/icons-material/GitHub";
|
||||
|
@ -28,29 +26,20 @@ const socialLinks = [
|
|||
export default function Social() {
|
||||
return (
|
||||
<Box style={{ padding: 10, scrollMarginTop: "4rem" }} id="contact">
|
||||
<Accordion
|
||||
style={{ boxShadow: "none" }}
|
||||
defaultExpanded
|
||||
disableGutters
|
||||
square
|
||||
>
|
||||
<AccordionSummary content={{ margin: 0 }} style={{ margin: 0 }}>
|
||||
<h3 style={{ paddingRight: 20 }}>Social</h3>
|
||||
<Box
|
||||
style={{ display: "flex", marginLeft: "auto", flexWrap: "wrap" }}
|
||||
>
|
||||
{socialLinks.map((v, i) => (
|
||||
<a
|
||||
key={i}
|
||||
href={v.url}
|
||||
style={{ margin: "auto 0", color: "black", padding: "10px" }}
|
||||
>
|
||||
{v.icon}
|
||||
</a>
|
||||
))}
|
||||
</Box>
|
||||
</AccordionSummary>
|
||||
</Accordion>
|
||||
<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}
|
||||
style={{ margin: "auto 0", color: "black", padding: "10px" }}
|
||||
>
|
||||
{v.icon}
|
||||
</a>
|
||||
))}
|
||||
</Box>
|
||||
</Box>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue