Skip to content

Commit

Permalink
fix: minor faq updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffreymeng committed Jan 25, 2024
1 parent 66d5988 commit 6d97359
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

.idea/

# dependencies
/node_modules
/.pnp
Expand Down Expand Up @@ -36,4 +38,4 @@ yarn-error.log*
next-env.d.ts

# gh pages
dist/
dist/
12 changes: 6 additions & 6 deletions src/components/Faq.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ const FAQ_DATA: Faq_Data[] = [
{
title: "When and where is Brain Games?",
content:
"Brain Games will be from 11am-4:30pm on Saturday, February 10, 2024, in the Student Center (Emerald Bay).",
"Brain Games will be from 11am-4:30pm on Saturday, February 10, 2024, in the Student Center (Emerald Bay room).",
},
{
title: "Who can participate?",
content:
"All UCI students! Brain Games is open to individuals of all skill levels, including beginners. Brain Games is designed to be inclusive, with games that are more about collaboration and enjoyment.",
"All UCI students! Brain Games is open to individuals of all skill levels, including beginners. Brain Games is designed to be inclusive, with games that will be fun for all skill levels and backgrounds (for blindfolded coding, some experience with python by at least one of your team members will be helpful).",
},
{
title: "How big are the teams? What if I don't have a team?",
Expand All @@ -37,13 +37,13 @@ const FAQ_DATA: Faq_Data[] = [
"Yes! There will be a lunch break in the middle of the event. We will have pizza, sprite, snacks, and Capri Suns.",
},
{
title: "Are there prizes?",
content: "Yes! We have prizes for first, second, and third place.",
title: "How much does it cost? Are there prizes?",
content: "Brain games is completely free to attend, with food and snacks provided at no cost to any participants! We'll also prizes for each member of the first, second, and third place teams.",
},
{
title: "What should participants bring?",
title: "What should teams bring?",
content:
"Please make sure that your team brings at least 1 charged laptop (which will be used for the blindfolded pair programming event), as well as some writing materials to take notes with!",
"Please make sure that your team brings at least 1 charged laptop for blindfolded coding (we recommend each team bring a second backup laptop just in case), as well as some writing materials to take notes with!",
},
{
title: "What if I have other questions?",
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ const MEDIA_LINKS = [
},
{
id: 5,
link: "mailto: [email protected]",
link: "mailto:[email protected]",
icon: <FaEnvelope />,
},
];

const Footer = () => {
return (
<footer className="flex-center px-2 py-2 mt-16 flex-col gap-y-4">
<footer className="flex-center px-2 py-2 mt-16 mb-8 flex-col gap-y-4">
<div className="flex justify-center gap-5 text-3xl sm:gap-12 sm:text-4xl">
{MEDIA_LINKS.map((link) => (
<Link
Expand Down

0 comments on commit 6d97359

Please sign in to comment.