Skip to content

Commit 0dda051

Browse files
committedSep 3, 2023
modified faq section text
1 parent f313c20 commit 0dda051

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed
 

‎src/components/FaqPage.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const FaqPage = () => {
3434
},
3535
{
3636
title: "Q: How big can a team be?!",
37-
content: `Up to 4 people`,
37+
content: `Up to 4 people!`,
3838
},
3939
{
4040
title: "Q: What are the rules? Can I work on my project ahead of time?",
@@ -46,11 +46,11 @@ const FaqPage = () => {
4646
},
4747
{
4848
title: "Q: Who runs this event?",
49-
content: `You can learn more about us at acmatcmu.com.`,
49+
content: `You can learn more about us at <a href="http://acmatcmu.com" class="custom-link">acmatcmu.com</a>!`,
5050
},
5151
{
5252
title: "Q: Any other questions, comments, or concerns?",
53-
content: `Email us at acm-exec[at]cs.cmu.edu.`,
53+
content: `Email us at acm-exec@cs.cmu.edu.`,
5454
},
5555
],
5656
};

‎src/components/Homepage.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ import hero from '../images/hero.png'
33
const Homepage = () => {
44
return (
55
<div className="home-page">
6-
6+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/4.0.20/fullpage.css"
7+
integrity="sha512-wCVOuVtxsXqrQK7tj9j4BvyfITQmpp7UE7mVilD7aieGLYFEIAa5UKTP1RapOf6dxQ9JIKAneakcyykWG4r4Ow=="
8+
crossorigin="anonymous" referrerpolicy="no-referrer" />
9+
710
<div className="home-page-content">
811
<div class="section" id="home">
912
<div id="star-container">
@@ -13,6 +16,8 @@ const Homepage = () => {
1316
</div>
1417
</div>
1518
<img class="home-page-logo-pic" src={hero} alt="hero" width="30%" />
19+
20+
1621
<div className="home-page-sign-up-links">
1722
<a href="https://cmu.ca1.qualtrics.com/jfe/form/SV_2nrluKEiu0VOgLA?">
1823
<div className="sign-up-button" id="participant-button">
@@ -29,5 +34,9 @@ const Homepage = () => {
2934
</div>
3035
);
3136
}
32-
37+
38+
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/4.0.20/fullpage.min.js"
39+
integrity="sha512-LGiXf+jHGTHcIybSsOWO3I/in+OObCkcEsWIZ7IyhzfD6RzD5qDUw2CK+JveuI7zTSEcDG//bIOvOpAJW2BWsg=="
40+
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
41+
3342
export default Homepage;

‎src/styles/Faq.css

+4
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@
9999
border-bottom: 0px solid #ccc !important;
100100

101101
}
102+
103+
.custom-link {
104+
color: white;
105+
}
102106
.faq-body {
103107
position: relative;
104108
background-image: linear-gradient(

0 commit comments

Comments
 (0)
Please sign in to comment.