Skip to content

Commit 2416409

Browse files
committed
* Added open source block
1 parent 743f2c7 commit 2416409

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

src/pages/about/index.jsx

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import GroupIcon from '@material-ui/icons/Group';
1010
import InfoIcon from '@material-ui/icons/Info';
1111
import { graphql, useStaticQuery } from 'gatsby';
1212
import Divider from '@material-ui/core/Divider';
13+
import CardActionArea from '@material-ui/core/CardActionArea';
1314
import GitHubIcon from '../../components/GithubIcon';
1415
import LinkedInIcon from '../../components/LinkedInIcon';
1516
import PageHeader from '../../components/PageHeader';
@@ -152,6 +153,36 @@ const AboutPage = () => {
152153
</CardContent>
153154
</Card>
154155
</Grid>
156+
</Grid>
157+
158+
<Grid container spacing={2} style={{ marginTop: 20 }}>
159+
<Grid item xs={12} md={12} lg={12}>
160+
<Typography variant="h5" color="textPrimary">
161+
<SvgIcon color="inherit">
162+
<GitHubIcon />
163+
</SvgIcon>
164+
{' '}
165+
Open Source
166+
</Typography>
167+
</Grid>
168+
<Grid item xs={12} md={12} lg={12}>
169+
<Divider />
170+
</Grid>
171+
</Grid>
172+
<Grid container spacing={2} style={{ marginTop: 20 }}>
173+
<Grid item xs={12} md={12} lg={12}>
174+
<Card>
175+
<CardActionArea onClick={() => window.open('https://github.com/CodeDead/codedead.com/', '_blank')}>
176+
<CardContent>
177+
<Typography variant="body2" color="textSecondary" component="p">
178+
Did you know that this website is completely open-source?
179+
You are free to edit, build and create pull requests to make
180+
this website even better!
181+
</Typography>
182+
</CardContent>
183+
</CardActionArea>
184+
</Card>
185+
</Grid>
155186
<Grid item xs={12} md={12} lg={12}>
156187
<Typography variant="body2" align="center">
157188
Logo and favicon by

0 commit comments

Comments
 (0)