Skip to content

Commit

Permalink
link tag change and format change
Browse files Browse the repository at this point in the history
  • Loading branch information
Kayla Hamakawa authored and Kayla Hamakawa committed Mar 3, 2024
1 parent 4dbdf0a commit 2ee45ba
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/components/SubmissionsPage/Submissions.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import React, { useState } 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 '@material-ui/core/Link';

const useStyles = makeStyles(theme => ({
title: {
Expand Down Expand Up @@ -54,26 +55,28 @@ const SubmissionsPage = () => {

<Typography className={classes.info}>
1{')'} Submit the project on the HOTH XI{' '}
<a
<Link
href="https://hoth-xi.devpost.com/?ref_feature=challenge&ref_medium=discover"
target="_blank"
className={devPostClicked ? classes.linkClicked : classes.link}
onClick={handleDevPostClick} rel="noreferrer"
onClick={handleDevPostClick}
rel="noopener noreferrer"
>
devpost
</a>
Devpost
</Link>
</Typography>

<Typography className={classes.info}>
2{')'} Fill out the{' '}
<a
2{')'} Fill out the HOTH XI{' '}
<Link
href="https://forms.gle/VPBHtLTyPo1pn7pn9"
target="_blank"
className={formClicked ? classes.linkClicked : classes.link}
onClick={handleFormClick} rel="noreferrer"
onClick={handleFormClick}
rel="noopener noreferrer"
>
HOTH XI Submission Form
</a>
Submission Google Form
</Link>
</Typography>

<Typography
Expand Down

0 comments on commit 2ee45ba

Please sign in to comment.