Created the More component

This commit is contained in:
Mathias Wagner 2022-09-12 01:00:09 +02:00
parent f7a9fd5f70
commit 8d4b6562c3

20
src/pages/More/More.jsx Normal file
View File

@ -0,0 +1,20 @@
import './styles.sass';
import Card from "@/pages/More/components/Card/index.js";
import {faBook, faBriefcase, faClipboardList, faHeart, faIdCard, faLock} from "@fortawesome/free-solid-svg-icons";
import {faDiscord} from "@fortawesome/free-brands-svg-icons";
const More = () => {
return (
<div className="more-wrapper">
<Card icon={faBook} text="Check out our documentation" to="https://wiki.sheepstar.xyz"/>
<Card icon={faDiscord} text="Join our discord server" to="https://support.sheepstar.xyz"/>
<Card icon={faHeart} text="Donate to us" to="https://www.buymeacoffee.com/sheepstarbot"/>
<Card icon={faIdCard} text="Show more about us" to="/about-us"/>
<Card icon={faLock} text="Read the privacy policy" to="/privacy"/>
<Card icon={faClipboardList} text="Read the terms of service" to="/tos"/>
<Card icon={faBriefcase} text="Imprint" to="/imprint"/>
</div>
)
}
export default More;