-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4ce9e9d
commit 6e5bd4d
Showing
1 changed file
with
54 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,13 +53,12 @@ const Footer: React.FC<{ | |
</Col> | ||
<Col md="6" lg="3" xxl="3"> | ||
<p> | ||
<Link to="/notebooks">Notebooks</Link> are a great way to get | ||
started with the data. They are interactive and can be run in the | ||
cloud. | ||
</p> | ||
<p> | ||
All the notebooks have each an independent environment you can | ||
spin with docker, preview on mybinder, google colab... | ||
Our{" "} | ||
<Link to="/notebooks" underline> | ||
Notebooks | ||
</Link>{" "} | ||
are a great way to get started with the data. They are interactive | ||
and can be run in the cloud. | ||
</p> | ||
</Col> | ||
</Row> | ||
|
@@ -99,45 +98,45 @@ const Footer: React.FC<{ | |
<Col> | ||
<h3 className="mt-2">Associated Partners</h3> | ||
</Col> | ||
<Row> | ||
{associatedPartners.map((associatedPartner) => ( | ||
<Col | ||
key={associatedPartner.name} | ||
sm="12" | ||
md="6" | ||
lg="4" | ||
xxl="4" | ||
className="footer-logo py-2 py-md-3" | ||
> | ||
<AssociatedPartner {...associatedPartner} /> | ||
</Col> | ||
))} | ||
</Row> | ||
</Row> | ||
<Row> | ||
{associatedPartners.map((associatedPartner) => ( | ||
<Col | ||
key={associatedPartner.name} | ||
sm="12" | ||
md="6" | ||
lg="4" | ||
xxl="4" | ||
className="footer-logo py-2 py-md-3" | ||
> | ||
<AssociatedPartner {...associatedPartner} /> | ||
</Col> | ||
))} | ||
</Row> | ||
<Row className="border-top border-dark py-3"> | ||
<Col> | ||
<h3 className="mt-2">Funding agencies</h3> | ||
</Col> | ||
</Row> | ||
<Row> | ||
<Col md="6" lg="3" xxl="3" className="footer-logo py-4"> | ||
<Col md={6} lg={4} className="footer-logo py-4"> | ||
<LogoSnsf width={180} className="mb-3" /> | ||
<span> | ||
The Swiss National Science Foundation (SNSF) funds excellent | ||
research at universities and other institutions – from chemistry | ||
to medicine to sociology | ||
</span> | ||
</Col> | ||
<Col md="6" lg="3" xxl="3" className="footer-logo py-4"> | ||
<Col md={6} lg={4} className="footer-logo py-4"> | ||
<LogoFnr width={180} className="mb-3" /> | ||
<span> | ||
The Luxembourg National Research Fund (FNR) is the main funder of | ||
research activities in Luxembourg | ||
</span> | ||
</Col> | ||
</Row> | ||
<Row className="mb-5 py-3 border-top border-dark"> | ||
<Col sm={6}> | ||
<Row className="mb-5 py-4 border-top border-dark"> | ||
<Col md={6} lg={4}> | ||
<GitInfo | ||
version={import.meta.env.PUBLIC_VERSION} | ||
gitBranch={import.meta.env.PUBLIC_GIT_BRANCH} | ||
|
@@ -158,25 +157,49 @@ const Footer: React.FC<{ | |
</p> | ||
</GitInfo> | ||
</Col> | ||
<Col> | ||
<Col md={6} lg={4}> | ||
<ul className="list-unstyled"> | ||
<li> | ||
<h4>Contact</h4> | ||
</li> | ||
<li> | ||
<a | ||
href="mailto:[email protected]" | ||
className="text-decoration-none" | ||
> | ||
[email protected] | ||
</a> | ||
</li> | ||
</ul> | ||
</Col> | ||
<Col md={6} lg={4}> | ||
<ul className="list-unstyled"> | ||
<li> | ||
<h4>Links</h4> | ||
</li> | ||
<li> | ||
<Link underline to="/about"> | ||
About | ||
</Link> | ||
</li> | ||
<li> | ||
<Link underline to="/notebooks"> | ||
Browse notebooks | ||
</Link> | ||
</li> | ||
<li> | ||
<Link underline to="/plans"> | ||
Plans | ||
</Link> | ||
</li> | ||
<li> </li> | ||
<li> | ||
<Link underline to="/terms-of-use"> | ||
Terms of Use | ||
</Link> | ||
</li> | ||
</ul> | ||
</Col> | ||
<Col> | ||
<Link underline to="/terms-of-use"> | ||
Terms of Use | ||
</Link> | ||
</Col> | ||
</Row> | ||
</Container> | ||
</footer> | ||
|