Page MenuHomec4science

welcome.js
No OneTemporary

File Metadata

Created
Tue, Feb 4, 01:33

welcome.js

import React from "react"
import "./welcome.css"
import Container from '@material-ui/core/Container'
import Grid from '@material-ui/core/Grid'
import Paper from '@material-ui/core/Paper';
import Box from '@material-ui/core/Box'
import Link from '@material-ui/core/Link'
import { makeStyles } from '@material-ui/core/styles';
const useStyles = makeStyles((theme) => ({
root: {
flexGrow: 1,
},
paper: {
padding: theme.spacing(2),
textAlign: 'left',
color: 'balck',
backgroundColor:" #F8F8F8",
// height: 400,
// width: 400,
},
// grid: {
// }
}))
function Welcome () {
const classes = useStyles();
return (
<div className={classes.root}>
<Container maxWidth="xl"
style={{paddingTop:"2rem"}}
>
<Grid container spacing={3}>
<Grid item xs >
<Box
// px={{ xs:3, sm: 10 }}
// py={{ xs:5, sm: 10 }}
bgcolor="white"
color="black">
<Paper className={classes.paper}>
<h2
style={{paddingBottom:"1rem"}}
>Welcome!</h2>
<p style={{textAlign:"left"}}>The OACCT (Open Access Compliance Check Tool) is an online resource, tailored to the Swiss academic community's needs, that gathers the most important information concerning Open-Access publishing.</p>
</Paper>
</Box>
</Grid>
<Grid item xs >
<Box
// px={{ xs:3, sm: 10 }}
// py={{ xs:5, sm: 10 }}
bgcolor="white"
color="black">
<Paper className={classes.paper} >
<h2
style={{paddingBottom:"1rem"}}
>Mission</h2>
<p style={{textAlign:"left"}}>
Its principal goal is to guide Swiss researchers in deciding where and how to publish their works in compliance with funders and institutional Open Access policies</p>
</Paper>
</Box>
</Grid>
<Grid item xs>
<Box
// px={{ xs:3, sm: 10 }}
// py={{ xs:5, sm: 10 }}
bgcolor="white"
color="black">
<Paper className={classes.paper}>
<h2
style={{paddingBottom:"1rem"}}
>Where do our data come from?</h2>
<p class="mb-0" style={{textAlign:"left"}}>OACCT provides a list of journals with information aggregated from several sources on a regular basis:
</p>
<br />
<p>
<ul >
<li>Journal ISSNs (source: ISSN International centre)</li>
<li>Publication conditions (source: Sherpa/Romeo)</li>
<li>Swiss institutions from swissuniversities</li>
<li>Funders from
To be completed</li>
</ul>
</p>
</Paper>
</Box>
</Grid>
</Grid>
</Container>
</div>
)
}
export default Welcome

Event Timeline