-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove default footer and propose a react component to replace it.
- Loading branch information
1 parent
7d146d4
commit acda616
Showing
13 changed files
with
136 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
import Link from "@docusaurus/Link"; | ||
import styles from "./styles.module.css"; | ||
import GHPicture from "@site/static/img/socialmedias/GH.svg"; | ||
import LinkedInPicture from "@site/static/img/socialmedias/LinkedIn.svg"; | ||
import XPicture from "@site/static/img/socialmedias/X.svg"; | ||
import AstronautPicture from "@site/static/img/quantstack/astronaut-footer.svg"; | ||
|
||
export default function Footer() { | ||
return ( | ||
<div className={"container" + " " + styles.footer_container}> | ||
<div className={"row"} style={{ paddingBottom: "var(--ifm-spacing-xl)" }}> | ||
<div className="col col--4" style={{display:"flex", alignItems:"center"}}> | ||
<div className={styles.astronaut_container}> | ||
<div> | ||
<Link href={"/home"}> | ||
<AstronautPicture width={"140px"} height={"140px"} /> | ||
</Link> | ||
</div> | ||
</div> | ||
</div> | ||
<div | ||
className={ | ||
"col col--4 flex-full-centred" + " " + styles.menu_container | ||
} | ||
> | ||
<b>Menu</b> <br /> | ||
<ul> | ||
<li> | ||
<Link href={"/home"}>Home</Link> | ||
</li> | ||
<li> | ||
<Link href={"/projects"}>Projects</Link> | ||
</li> | ||
<li> | ||
<Link href={"/about"}>About us</Link> | ||
</li> | ||
<li> | ||
<Link href={"/services"}>Services</Link> | ||
</li> | ||
<li> | ||
<Link href={"/careers"}>Careers</Link> | ||
</li> | ||
<li> | ||
<Link href={"/blog"}>Blog</Link> | ||
</li> | ||
<li> | ||
<Link href={"/contact"}>Contact us</Link> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div className="col col--4 flex-full-centered"> | ||
<div className={styles.social_media_links}> | ||
<b>Follow us on</b> <br /> | ||
<div > | ||
<Link href={"https://github.com/QuantStack"}> | ||
{<GHPicture />} | ||
</Link> | ||
<Link | ||
href={"https://www.linkedin.com/company/quantstack/mycompany"} | ||
> | ||
{<LinkedInPicture />} | ||
</Link> | ||
<Link href={"https://twitter.com/QuantStack"}> | ||
{<XPicture />} | ||
</Link> | ||
</div> | ||
<div className={styles.office_address}> | ||
<b>QuantStack office</b> <br /> | ||
16, avenue Curti <br /> | ||
94100 Saint-Maur-des-Fossés <br /> | ||
France | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<div className={"row flex-full-centered"}> | ||
<div className={styles.copyright_container}> | ||
Copyright © 2024 · QuantStack website · Built with Docusaurus | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
.footer_container { | ||
background-color: var(--ifm-color-primary-p1); | ||
padding: var(--ifm-spacing-xl) var(--ifm-spacing-2xl) 0 var(--ifm-spacing-2xl); | ||
} | ||
|
||
.copyright_container { | ||
text-align: center; | ||
} | ||
|
||
@media only screen and (max-width: 996px) { | ||
/*Mobile*/ | ||
.astronaut_container { | ||
display: none; | ||
} | ||
.menu_container { | ||
display: none; | ||
} | ||
} | ||
|
||
@media only screen and (min-width: 996px) { | ||
/*Desktop*/ | ||
.astronaut-container { | ||
padding: 100px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
} | ||
.social_media_links { | ||
padding-bottom: var(--ifm-spacing-xl); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.