diff --git a/src/app/pages/Designathons/Designathon24/components/FAQ/FAQ.module.scss b/src/app/pages/Designathons/Designathon24/components/FAQ/FAQ.module.scss index 7ea45f41..8908175b 100644 --- a/src/app/pages/Designathons/Designathon24/components/FAQ/FAQ.module.scss +++ b/src/app/pages/Designathons/Designathon24/components/FAQ/FAQ.module.scss @@ -75,6 +75,7 @@ } .answer_tag { + position: relative; margin: 1.25rem 0 0; padding: 1rem; cursor: pointer; diff --git a/src/app/pages/Designathons/Designathon24/components/FAQ/index.jsx b/src/app/pages/Designathons/Designathon24/components/FAQ/index.jsx index ad7cce11..30f2ae96 100644 --- a/src/app/pages/Designathons/Designathon24/components/FAQ/index.jsx +++ b/src/app/pages/Designathons/Designathon24/components/FAQ/index.jsx @@ -23,20 +23,7 @@ const FAQ = () => { />

FAQ

- {/*
- - Join the live conversation on the{" "} - - You Belong Here 2023 Discord - {" "} - for more help! - -
*/} +
{[ { @@ -53,7 +40,7 @@ const FAQ = () => { { { }, { q: "How much does it cost?", - a: "You Belong Here requires no cost to participate. All you need is a working device with Zoom, Discord, and an open mind. ", + a: "You Belong Here requires no cost to participate. All you need is a working device with Zoom, Discord, and an open mind.", }, { q: "When is the registration deadline?", - a: ( -

- Our{" "} - - participant sign-up form - {" "} - has been extended until February 19th at - 11:59pm (PST) -

- ), + a: "April 28th, 2024 11:59 PM", }, { q: "How do I prepare?", - a: ( -

- During the event, we will be hosting - workshops for anyone new to design - thinking or the design process. We - highly encourage getting the hang of - Figma, Sketch, Adobe XD, or the - prototyping tool of your choice. You are - also free to look through our Design at - UCI{" "} - - Resources - {" "} - page for extra information. Want to go - the extra mile? Show your excitement by - turning on your camera and adding our{" "} - - You Belong Here Zoom backgrounds. - -

- ), + a: "During the event, we will be hosting workshops for anyone new to design thinking or the design process. We highly encourage getting the hang of Figma, Sketch, Adobe XD, or the prototyping tool of your choice. You are also free to look through our Design at UCI Resources page for extra information. Want to go the extra mile? Show your excitement by turning on your camera and adding our True to You Zoom backgrounds.", }, { q: "How do teams work?", - a: ( -

- You have the option to (1) go solo, or - (2) form a team of up to 4 people total. - You may list your team members in the - sign-up form, but it’s okay if plans - change! Take advantage of our - #find-a-team{" "} - - Discord channel - {" "} - to meet potential team members. We will - consider your final team members to be - the ones indicated when submitting your - project. -

- ), + a: "You have the option to (1) go solo, or (2) form a team of up to 4 people total. You may list your team members in the sign-up form, but it’s okay if plans change! We will consider your final team members to be the ones indicated when submitting your project.", }, { q: "What if I don’t have a team?", - a: ( -

- Our #find-a-team Discord channel is the - perfect place for anyone looking for a - team at our Designathon. If you haven’t - already, join our You Belong Here{" "} - - Discord channel - {" "} - . Solo participants are also allowed. -

- ), + a: "We will be hosting a team finding event in person during Check-Ins! You can also find a team on our Discord. Solo participants are also allowed.", }, { q: "Where do I submit my project?", - a: ( -

- You will submit your final, working - prototype to the{" "} - - Submission Form - {" "} - (opens during event). Only one person on - your team should submit a form, which - will be on behalf of all contributors. -

- ), + a: "You will submit your final, working prototype to the Submission Form (opens during the event). Only ONE (1) person on your team should submit a form, which will be on behalf of all contributors.", }, ].map((item) => { return ( diff --git a/src/app/pages/Designathons/Designathon24/components/SectionNavigation/index.jsx b/src/app/pages/Designathons/Designathon24/components/SectionNavigation/index.jsx index 294354eb..ac0434d8 100644 --- a/src/app/pages/Designathons/Designathon24/components/SectionNavigation/index.jsx +++ b/src/app/pages/Designathons/Designathon24/components/SectionNavigation/index.jsx @@ -1,16 +1,16 @@ -import { useEffect, useState } from "react"; +// import { useEffect, useState } from "react"; import cn from "./SectionNavigation.module.scss"; const SectionNavigation = () => { - const [currentTime, setCurrentTime] = useState(() => new Date().getTime()); + // const [currentTime, setCurrentTime] = useState(() => new Date().getTime()); - useEffect(() => { - const timer = setInterval(() => { - setCurrentTime(new Date().getTime()); - }, 1000); + // useEffect(() => { + // const timer = setInterval(() => { + // setCurrentTime(new Date().getTime()); + // }, 1000); - return () => clearInterval(timer); - }, []); + // return () => clearInterval(timer); + // }, []); const scrollToSection = (id) => { window.scrollTo({