Page MenuHomec4science

Footer.js
No OneTemporary

File Metadata

Created
Sun, May 19, 19:58

Footer.js

/*
This is the Open Access Check Tool (OACT).
The publication of scientific articles as Open Access (OA), usually in the variants "Green OA" and "Gold OA", allows free access to scientific research results and their largely unhindered dissemination. Often, however, the multitude of available publication conditions makes the decision in favor of a particular journal difficult: requirements of the funding agencies and publication guidelines of the universities and colleges must be carefully compared with the offers of the publishing houses, and separately concluded publication agreements can also offer additional benefits. The "OA Compliance Check Tool" provides a comprehensive overview of the possible publication conditions for a large number of journals, especially for the Swiss university landscape, and thus supports the decision-making process.
© All rights reserved. ECOLE POLYTECHNIQUE FEDERALE DE LAUSANNE, Switzerland, Scientific Information and Libraries, 2022
See LICENSE.TXT for more details.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see
<https://www.gnu.org/licenses/>.
*/
import React from "react"
import "./FooterStyles.css"
import Container from '@material-ui/core/Container'
import Grid from '@material-ui/core/Grid'
import Box from '@material-ui/core/Box'
import Link from '@material-ui/core/Link'
/**
* About Page Information.
*
* @version 0.0.1
* @author [George brune](https://github.com/sapegin)
* @author [Andy Krings-Stern](https://github.com/ankri)
* @see http://github.com
*/
export default function Footer () {
return (
<footer className="footer">
<Container maxWidth="xl" >
<Box
px={{ xs:3, sm: 10 }}
py={{ xs:5, sm: 10 }}
bgcolor="whitesmoke"
color="black">
<Container maxWidth="xl" >
<Grid container spacing={5}>
<Grid item xs={12} sm={4}>
<Box borderBottom={1}>Sponsor</Box>
<Box>
<Link href="https://www.swissuniversities.ch/" color="inherit">swissuniversities</Link>
</Box>
</Grid>
<Grid item xs={12} sm={4}>
<Box borderBottom={1}>OACT Creators</Box>
<Box>
<Link href="https://www.epfl.ch/en/" color="inherit">Ecole polytechnique fédérale de Lausanne (EPFL)</Link>
</Box>
<Box>
<Link href="https://www.unige.ch/" color="inherit">Université de Genève</Link>
</Box>
</Grid>
<Grid item xs={12} sm={4}>
<Box borderBottom={1}><Link href="mailto:publishsupport@epfl.ch?subject=OACT contact request" color="inherit">Contact</Link></Box>
<Box>
<Link href="mailto:publishsupport@epfl.ch?subject=OACT contact request" color="inherit">Email us</Link>
</Box>
</Grid>
</Grid>
<Box textAlign="center" pt={{xs: 5, sm: 10}} pb={{xs: 5, sm: 0}}>
Open Access Check Tool &reg; {new Date().getFullYear()} EPFL-UNIGE<br/>
This application is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
published by the Free Software Foundation, either version 3 of the
License, or (at your option) any later version.
Source code is available from our <a href="https://c4science.ch/diffusion/OACT/">Git repository</a> on C4science.
Application data is distributed under the <a href="/#/help#datalicense">CC BY-NC-SA 4.0 license</a>.
</Box>
</Container>
</Box>
</Container>
</footer>
)
}

Event Timeline