diff --git a/src/components/qp/Timeline.astro b/src/components/qp/Timeline.astro
index 2dc3b72..d2edb6f 100644
--- a/src/components/qp/Timeline.astro
+++ b/src/components/qp/Timeline.astro
@@ -7,12 +7,11 @@ import Subtitle from "../core/Subtitle.astro";
Competition
{name}
diff --git a/src/data/roboFaq.json b/src/data/roboFaq.json new file mode 100644 index 0000000..bfe95f0 --- /dev/null +++ b/src/data/roboFaq.json @@ -0,0 +1,22 @@ +[ + { + "question": "How are students selected for positions on the team?", + "answer": "Students will be interviewed for vacant positions. Possessing basic knowledge and skills outlined in the position description is highly encouraged though not required to join. Prospective members will be selected based on their technical expertise and ability to work in a team." + }, + { + "question": "What level of experience is necessary?", + "answer": "Our team members have a wide range of skill sets from workshop fabrication to algorithm design. Due to the high volume of applications, prospective members who have completed elementary coursework in their discipline or have exceptional project experience will be preferred for more demanding roles. For entry level roles, passion, commitment to the project, and strong problem solving ability are key to being considered." + }, + { + "question": "Will I have to pay for membership dues?", + "answer": "All TritonBot members must purchase an IEEE membership following their recruitment. This ensures we will have access to funds from the IEEE Robotics and Automation Society." + }, + { + "question": "I’m not an engineering or computer science major, should I still apply?", + "answer": "There are no requirements based on major. As stated previously, knowledge and skills in particular roles is prioritized. " + }, + { + "question": "Can I apply for multiple positions?", + "answer": "Applicants may apply to more than one position without limitations. Following the interview process they are selected for one position. This doesn’t mean cross team collaboration and learning is not encouraged however." + } +] diff --git a/src/data/roboTimeline.json b/src/data/roboTimeline.json index 51a1983..fd02f6c 100644 --- a/src/data/roboTimeline.json +++ b/src/data/roboTimeline.json @@ -1,30 +1,34 @@ [ { - "week": "Fall W1 - W3", - "description": "Submit Applications" + "week": "Fall W1", + "description": " RoboCup Info Session\nApplication Open" }, { - "week": "Fall W4 - W9", - "description": "QP groups are formed, QP Kickoff" + "week": "Fall W2", + "description": "Application Close\nInterview Scheduled" }, { - "week": "Week 3", - "description": "Mentor Assignments" + "week": "Fall W3", + "description": "Member Placements Finalized" }, { - "week": "Week 4", - "description": "Workathon #1" + "week": "Winter W6", + "description": "Team Qualification Material Submission Deadline" }, { - "week": "Week 6", - "description": "Workathon #2, Milestone #1" + "week": "Winter W-Final", + "description": "Preliminary Team Qualification Results" }, { - "week": "Week 8", - "description": "Workathon #3, Milestone #2" + "week": "Spring W3", + "description": "Final Team Qualification Results" }, { - "week": "Week 9/10", - "description": "Final submission, QP Showcase!" + "week": "Spring W7", + "description": "Robofest Showcase" + }, + { + "week": "Mid July", + "description": "RoboCup 2025 International Competition" } ] diff --git a/src/pages/robocup.astro b/src/pages/robocup.astro index 557ef9e..21ad661 100644 --- a/src/pages/robocup.astro +++ b/src/pages/robocup.astro @@ -1,7 +1,7 @@ --- import Layout from "../layouts/Layout.astro"; import Questions from "../components/core/Questions.astro"; -import faq from "../data/faq.json"; +import roboFaq from "../data/roboFaq.json"; import About from "../components/core/About.astro"; import RoboTitle from "../components/robocub/RoboTitle.astro"; import Link from "next/link"; @@ -29,26 +29,26 @@ import roboTimeline from "../data/roboTimeline.json"