@@ -10,6 +10,7 @@ import GroupIcon from '@material-ui/icons/Group';
1010import InfoIcon from '@material-ui/icons/Info' ;
1111import { graphql , useStaticQuery } from 'gatsby' ;
1212import Divider from '@material-ui/core/Divider' ;
13+ import CardActionArea from '@material-ui/core/CardActionArea' ;
1314import GitHubIcon from '../../components/GithubIcon' ;
1415import LinkedInIcon from '../../components/LinkedInIcon' ;
1516import 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