|
| 1 | +import Link from "@docusaurus/Link"; |
| 2 | +import styles from "./styles.module.css"; |
| 3 | +import GHPicture from "@site/static/img/socialmedias/GH.svg"; |
| 4 | +import LinkedInPicture from "@site/static/img/socialmedias/LinkedIn.svg"; |
| 5 | +import XPicture from "@site/static/img/socialmedias/X.svg"; |
| 6 | + |
| 7 | +export function SocialMediasQuantStack() { |
| 8 | + return ( |
| 9 | + <div> |
| 10 | + <b>Follow us on</b> <br /> |
| 11 | + <div style={{marginBottom: "var(--ifm-spacing-lg)"}}> |
| 12 | + <Link href={"https://github.com/QuantStack"}>{<GHPicture />}</Link> |
| 13 | + <Link href={"https://www.linkedin.com/company/quantstack/mycompany"}> |
| 14 | + {<LinkedInPicture />} |
| 15 | + </Link> |
| 16 | + <Link href={"https://twitter.com/QuantStack"}>{<XPicture />}</Link> |
| 17 | + </div> |
| 18 | + </div> |
| 19 | + ); |
| 20 | +} |
| 21 | + |
| 22 | +export default function Footer() { |
| 23 | + return ( |
| 24 | + <div className={"container" + " " + styles.footer_container}> |
| 25 | + <div className={"row"} style={{ paddingBottom: "var(--ifm-spacing-xl)" }}> |
| 26 | + <div |
| 27 | + className={ |
| 28 | + "col flex-horizontally-centered" + " " + styles.col_social_media_desktop |
| 29 | + } |
| 30 | + > |
| 31 | + <SocialMediasQuantStack /> |
| 32 | + </div> |
| 33 | + <div className={"col flex-horizontally-centered"}> |
| 34 | + <div className={"container" + " " + styles.menu_container}> |
| 35 | + <div style={{ textAlign: "center" }}> |
| 36 | + <b>Menu</b> <br /> |
| 37 | + </div> |
| 38 | + <div className="row"> |
| 39 | + <div className="col flex-horizontally-centered"> |
| 40 | + <ul> |
| 41 | + <li> |
| 42 | + <Link href={"/home"}>Home</Link> |
| 43 | + </li> |
| 44 | + |
| 45 | + <li> |
| 46 | + <Link href={"/projects"}>Projects</Link> |
| 47 | + </li> |
| 48 | + <li> |
| 49 | + <Link href={"/about"}>About us</Link> |
| 50 | + </li> |
| 51 | + </ul> |
| 52 | + </div> |
| 53 | + <div className="col flex-horizontally-centered"> |
| 54 | + <ul> |
| 55 | + <li> |
| 56 | + <Link href={"/services"}>Services</Link> |
| 57 | + </li> |
| 58 | + <li> |
| 59 | + <Link href={"/careers"}>Careers</Link> |
| 60 | + </li> |
| 61 | + <li> |
| 62 | + <Link href={"/blog"}>Blog</Link> |
| 63 | + </li> |
| 64 | + </ul> |
| 65 | + </div> |
| 66 | + </div> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + |
| 70 | + <div |
| 71 | + className={ |
| 72 | + "col flex-full-centered" + " " + styles.col_address_desktop |
| 73 | + } |
| 74 | + > |
| 75 | + <div> |
| 76 | + <div> |
| 77 | + <b>QuantStack office</b> <br /> |
| 78 | + 16, avenue Curti <br /> |
| 79 | + 94100 Saint-Maur-des-Fossés <br /> |
| 80 | + France |
| 81 | + </div> |
| 82 | + </div> |
| 83 | + </div> |
| 84 | + |
| 85 | + <div className={"col" + " " + styles.col_social_media_and_address_mobile}> |
| 86 | + <SocialMediasQuantStack /> |
| 87 | + |
| 88 | + <div> |
| 89 | + <div> |
| 90 | + <b>QuantStack office</b> <br /> |
| 91 | + 16, avenue Curti <br /> |
| 92 | + 94100 Saint-Maur-des-Fossés <br /> |
| 93 | + France |
| 94 | + </div> |
| 95 | + </div> |
| 96 | + </div> |
| 97 | + </div> |
| 98 | + |
| 99 | + <div className={"row flex-full-centered"}> |
| 100 | + <div className={styles.copyright_container}> |
| 101 | + Copyright © 2024 · QuantStack website · Built with Docusaurus |
| 102 | + </div> |
| 103 | + </div> |
| 104 | + </div> |
| 105 | + ); |
| 106 | +} |
0 commit comments