This repository was archived by the owner on Mar 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Expand file tree
/
Copy pathStandFor.js
More file actions
157 lines (149 loc) · 4.34 KB
/
StandFor.js
File metadata and controls
157 lines (149 loc) · 4.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import {
Box,
Container,
Grid,
Hidden,
Typography,
makeStyles
} from '@material-ui/core';
const useStyles = makeStyles(theme => ({
root: {
background: '#FFF',
paddingTop: 80,
paddingBottom: 80,
paddingLeft: 70,
paddingRight: 70,
[theme.breakpoints.down('md')]: {
paddingLeft: 15,
paddingRight: 15
}
},
extraPadding: {
padding: '0 35px',
textAlign: 'justify',
[theme.breakpoints.down('sm')]: {
padding: '0'
}
},
hide: {
display: 'none'
},
btn: {
backgroundColor: '#A60000',
color: '#ffffff',
textTransform: 'capitalize',
[theme.breakpoints.down('sm')]: {
width: '100%'
},
'&:hover': {
backgroundColor: 'rgba(166, 0, 0, 0.8)'
}
},
listPointers: {
fontSize: '45px',
marginRight: '5px'
},
extraMargin: {
marginTop: '50px',
[theme.breakpoints.down('md')]: {
marginTop: '30px'
}
}
}));
function StandsFor({ className, ...rest }) {
const classes = useStyles();
return (
<div className={clsx(classes.root, className)} {...rest}>
<Container maxWidth="lg">
<Typography
style={{ marginTop: '10px' }}
variant="h2"
align="center"
gutterBottom
color="textPrimary"
>
What Does the Campus Leader Stands For
</Typography>
<Grid container spacing={3} className={classes.extraMargin}>
<Hidden smDown>
<Grid
item
xs={12}
md={6}
style={{
display: 'flex',
justifyContent: 'center',
alignItems: 'center',
overflow: 'hidden'
}}
>
<img
alt="this is what we stand for"
src="/static/campusLeaders/standFor.png"
style={{
flexShrink: '0',
minWidth: '100%'
}}
/>
</Grid>
</Hidden>
<Grid item xs={12} md={6}>
<Box
display="flex"
flexDirection="column"
height="100%"
className={clsx(classes.extraPadding, className)}
>
<Box>
<Typography variant="body1">
<b>Campus Leaders at Code For Cause</b> are the entreprenurial
mindset people who want create value in the community by
awaring people, and gathering the like minded to work for
cause. And above all set example and influence on people for
contributing. So, some values and the expectations we have
from our campus leaders are
</Typography>
</Box>
<Box mt={2}>
<Typography variant="body1">
He/she shall be entusiastic about going social and build &
contribute for the community
</Typography>
<Typography variant="h6">- An Initiative taker</Typography>
</Box>
<Box mt={2}>
<Typography variant="body1">
A Leader shall always have a way of talking people out from
problems and leading them to do that for others too{' '}
</Typography>
<Typography variant="h6"> - A Community Builder</Typography>
</Box>
<Box mt={2}>
<Typography variant="body1">
He/she should be connecting to the resources available in
community that might help in building a better & more
helpful community
</Typography>
<Typography variant="h6">- A Resource Seeker</Typography>
</Box>
<Box mt={2}>
<Typography variant="body1">
Most sought after value - an effort maker and giving
peronality
</Typography>
<Typography variant="h6">- An Investor</Typography>
</Box>
</Box>
</Grid>
</Grid>
</Container>
</div>
);
}
StandsFor.propTypes = {
className: PropTypes.string
};
export default StandsFor;