This repository has been archived on 2023-12-17. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-27 22:20:20 +00:00
|
|
|
import "./Footer.scss";
|
|
|
|
import classNames from "classnames";
|
|
|
|
import svgGithub from "../../../assets/icon/github.svg?raw";
|
|
|
|
import svgDiscord from "../../../assets/icon/discord.svg?raw";
|
|
|
|
import svgTwitter from "../../../assets/icon/twitter.svg?raw";
|
|
|
|
import parse from "html-react-parser";
|
|
|
|
|
|
|
|
export default function Footer({ connected }) {
|
|
|
|
return (
|
|
|
|
<div className={classNames("socials", { connected })}>
|
2023-08-13 18:58:26 +00:00
|
|
|
<a
|
|
|
|
href="https://github.com/LumeWeb"
|
|
|
|
title="GitHub"
|
|
|
|
className="github-logo">
|
2023-07-27 22:20:20 +00:00
|
|
|
{parse(svgGithub)}
|
|
|
|
</a>
|
2023-08-13 18:58:26 +00:00
|
|
|
<a
|
|
|
|
href="https://discord.gg/qpC8ADp3rS"
|
|
|
|
title="Discord"
|
|
|
|
className="discord-logo">
|
2023-07-27 22:20:20 +00:00
|
|
|
{parse(svgDiscord)}
|
|
|
|
</a>
|
2023-08-13 18:58:26 +00:00
|
|
|
<a
|
|
|
|
href="https://twitter.com/lumeweb3"
|
|
|
|
title="Twitter"
|
|
|
|
className="twitter-logo">
|
2023-07-27 22:20:20 +00:00
|
|
|
{parse(svgTwitter)}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|