Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
180 changes: 99 additions & 81 deletions src/components/SocialLinks-Color/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,94 +9,112 @@ import youtube_icon from "../../assets/images/socialIcons/youtube.svg";
import docker_icon from "../../assets/images/socialIcons/docker.svg";
import linkedin_icon from "../../assets/images/socialIcons/linkedin-light.svg";
import bluesky_icon from "../../assets/images/socialIcons/bluesky.svg";
import { CustomTooltip } from "@sistent/sistent";
import SocialLinksWrapper from "./sociallinkscolor.style";

const SocialLinksColor = () => {
return (
<SocialLinksWrapper>
<Col $xs={12}>
<Row className="social_icons">
<a href="https://discuss.layer5.io" target="_blank" rel="noreferrer">
<img height="30px" src={forum_icon} alt="forum" />
</a>
<a
className="mail_icon"
href="mailto:community@layer5.io"
target="_blank"
rel="noreferrer"
>
<img height="30px" src={mail_icon} alt="mail" />
</a>
<a href="https://slack.layer5.io/" target="_blank" rel="noreferrer">
<img className="slack" height="30px" src={slack_icon} alt="slack" />
</a>
<a
href="https://x.com/layer5"
target="_blank"
rel="noreferrer"
className="footer_twitter"
>
<TwitterIcon />
</a>
<a
className="bluesky_icon"
href="https://bsky.app/profile/layer5.bsky.social"
target="_blank"
rel="noreferrer"
>
<img
className="bluesky"
height="30px"
src={bluesky_icon}
alt="bluesky"
/>
</a>
<a
href="https://github.com/layer5io"
target="_blank"
rel="noreferrer"
className="github"
>
<img height="30px" src={github_icon} alt="github" />
</a>
<a
href="https://www.linkedin.com/company/layer5"
target="_blank"
rel="noreferrer"
>
<img
className="linkedin"
height="30px"
src={linkedin_icon}
alt="linkedin"
/>
</a>
<a
className="youtube_icon"
href="https://youtube.com/Layer5io?sub_confirmation=1"
target="_blank"
rel="noreferrer"
>
<img
className="youtube"
height="30px"
src={youtube_icon}
alt="youtube"
/>
</a>
<a
className="docker_icon"
href="https://hub.docker.com/u/layer5/"
target="_blank"
rel="noreferrer"
>
<img
className="docker"
height="30px"
src={docker_icon}
alt="docker"
/>
</a>
<CustomTooltip title="Layer5 Discussion Forum" placement="top" variant="small">
<a href="https://discuss.layer5.io" target="_blank" rel="noreferrer">
<img height="30px" src={forum_icon} alt="forum" />
</a>
</CustomTooltip>
<CustomTooltip title="Email Layer5 Community" placement="top" variant="small">
<a className="mail_icon"
href="mailto:community@layer5.io"
target="_blank"
rel="noreferrer"
>
<img height="30px" src={mail_icon} alt="mail" />
</a>
</CustomTooltip>
<CustomTooltip title="Join Layer5 on Slack" placement="top" variant="small">
<a href="https://slack.layer5.io/" target="_blank" rel="noreferrer">
<img className="slack" height="30px" src={slack_icon} alt="slack" />
</a>
</CustomTooltip>
<CustomTooltip title="Follow Layer5 on X (Twitter)" placement="top" variant="small">
<a
href="https://x.com/layer5"
target="_blank"
rel="noreferrer"
className="footer_twitter"
>
<TwitterIcon />
</a>
</CustomTooltip>
<CustomTooltip title="Follow Layer5 on Bluesky" placement="top" variant="small">
<a
className="bluesky_icon"
href="https://bsky.app/profile/layer5.bsky.social"
target="_blank"
rel="noreferrer"
>
<img
className="bluesky"
height="30px"
src={bluesky_icon}
alt="bluesky"
/>
</a>
</CustomTooltip>
<CustomTooltip title="Layer5 on GitHub" placement="top" variant="small">
<a
href="https://github.com/layer5io"
target="_blank"
rel="noreferrer"
className="github"
>
<img height="30px" src={github_icon} alt="github" />
</a>
</CustomTooltip>
<CustomTooltip title="Layer5 on LinkedIn" placement="top" variant="small">
<a
href="https://www.linkedin.com/company/layer5"
target="_blank"
rel="noreferrer"
>
<img
className="linkedin"
height="30px"
src={linkedin_icon}
alt="linkedin"
/>
</a>
</CustomTooltip>
<CustomTooltip title="Layer5 on YouTube" placement="top" variant="small">
<a
className="youtube_icon"
href="https://youtube.com/Layer5io?sub_confirmation=1"
target="_blank"
rel="noreferrer"
>
<img
className="youtube"
height="30px"
src={youtube_icon}
alt="youtube"
/>
</a>
</CustomTooltip>
<CustomTooltip title="Layer5 on Docker Hub" placement="top" variant="small">
<a
className="docker_icon"
href="https://hub.docker.com/u/layer5/"
target="_blank"
rel="noreferrer"
>
<img
className="docker"
height="30px"
src={docker_icon}
alt="docker"
/>
</a>
</CustomTooltip>
</Row>
</Col>
</SocialLinksWrapper>
Expand Down
Loading