-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Kayla/submissions page #415
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
23afd2b
added submissions info page and button for when hoth xi starts
8e20119
changed format for links
7274089
fixed issue
2bb7127
link style change and format change
4dbdf0a
lint fix again
2ee45ba
link tag change and format change
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import React from 'react'; | ||
import { makeStyles } from '@material-ui/core/styles'; | ||
import Typography from '@material-ui/core/Typography'; | ||
import Container from '@material-ui/core/Container'; | ||
import { Link } from 'gatsby'; | ||
|
||
const useStyles = makeStyles(theme => ({ | ||
title: { | ||
fontWeight: theme.typography.fontWeightBold, | ||
paddingTop: theme.spacing(11), | ||
[theme.breakpoints.down('sm')]: { | ||
paddingTop: theme.spacing(4) | ||
}, | ||
paddingBottom: theme.spacing(4) | ||
}, | ||
info: { | ||
paddingTop: theme.spacing(4) | ||
|
||
}, | ||
divider: { | ||
height: '2px', | ||
marginLeft: theme.spacing(4), | ||
marginRight: theme.spacing(4), | ||
marginBottom: theme.spacing(4) | ||
} | ||
})); | ||
|
||
|
||
const SubmissionsPage = () => { | ||
const classes = useStyles(); | ||
return <Container maxWidth='md'> | ||
<Typography align='left' variant='h4' component='h1' className={classes.title}> | ||
Submission Info | ||
</Typography> | ||
|
||
<Typography align='left' variant='h5' component='h2'> | ||
Thank You for Participating in HOTH XI! | ||
</Typography> | ||
|
||
<Typography align='left' variant='h5' component='h2'> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's a little odd to have 2 lines so close to each other that have the same styling, like this. Maybe we can move the |
||
Follow These 2 Final Steps to Submit Your Project: | ||
</Typography> | ||
|
||
<Typography className={classes.info}> | ||
1{')'} Submit the project on the HOTH XI devpost: {' '} | ||
<Link to='https://hoth-xi.devpost.com/?ref_feature=challenge&ref_medium=discover'>devvvvpostttt</Link> | ||
</Typography> | ||
|
||
<Typography className={classes.info}> | ||
2{')'} Fill out the HOTH XI submission Google Form: {' '} | ||
<Link to='https://forms.gle/VPBHtLTyPo1pn7pn9'>HOTH XI Submission Form</Link> | ||
</Typography> | ||
</Container>; | ||
}; | ||
|
||
export default SubmissionsPage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export const hothStart = new Date('2024-03-02T08:00:00-08:00'); | ||
export const hothEnd = new Date('2024-03-02T23:00:00-08:00'); | ||
export const hothStart = new Date('2024-03-03T08:00:00-08:00'); | ||
export const hothEnd = new Date('2024-03-03T23:00:00-08:00'); | ||
export const applyDeadline = new Date('2024-02-26T23:59:59-08:00'); | ||
export const applicationOpen = new Date('2024-01-29T08:00:00-08:00'); | ||
export const scheduleAvailableTime = new Date('2024-02-26T08:00:00-08:00'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react'; | ||
|
||
import Layout from '../components/layout'; | ||
import SEO from '../components/seo'; | ||
import Submissions from '../components/SubmissionsPage/Submissions'; | ||
|
||
|
||
const SubmissionsPage = () => { | ||
return <Layout> | ||
<SEO title='Submissions' /> | ||
<Submissions/> | ||
</Layout>; | ||
}; | ||
|
||
export default SubmissionsPage; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After HOTH ends, this
Submit
button will show as a disabled button, which is not an issue but is that functionality you want? Imo, it might be weird to have a disabledSubmit
button for the rest of the year when HOTH is not running, but we can always fix that later.