Skip to content

Commit f42ad0f

Browse files
committed
form and contribute links added to extra notes pages
1 parent 03212c9 commit f42ad0f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/config/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ const config = {
3232
GA_TRACKING_ID: 'G-4FNHZ2Y1KD',
3333
YOUTUBE_PLAYLIST: 'https://www.youtube.com/playlist?list=PLevNch38Bx4FTPFRpq9pppJzDsPZs7h2Z',
3434
FORMSPREEE_CONTACT_FORM_ID: 'xoqrgzkz',
35+
CONTRIBUTE_GOOGLE_FORM_URL: 'https://forms.gle/6cREyxxw6mQqh5jp7',
3536
APP_COLORS,
3637
APP_PARTNERS,
3738
CONTACT: {

src/pages/ExtraNotes.jsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,11 @@ const ExtraNotes = () => {
7171
<Typography variant='h1' fontSize='4rem'>Extra Notes</Typography>
7272
<Divider />
7373
<Typography variant='h4' fontSize='1.4rem'>Collection of notes that don't directly relate to the project, but are helpful for those from different domains and fields!</Typography>
74+
<Typography variant='h4' fontSize='1rem'>
75+
Have notes that will help others? {' '}
76+
<Link href={config.GITHUB_URL} target='_blank'>Contribute to the project</Link> now (or) {' '}
77+
<Link href={config.CONTRIBUTE_GOOGLE_FORM_URL} target='_blank'>fill this form to get started</Link>.
78+
</Typography>
7479
<ListContainer >
7580
{extraNotes.length > 0 && extraNotes.map((extra, index) => (
7681
<Item key={index} {...extra} />
@@ -85,7 +90,7 @@ const Main = styled(Box)({
8590
flexDirection: 'column',
8691
alignItems: 'center',
8792
justifyContent: 'center',
88-
gap: '0.25em',
93+
gap: '0.4em',
8994
'> *': {
9095
width: '100%',
9196
}

0 commit comments

Comments
 (0)