From 574f83be6c85bdc4b54e848674c325bedba364df Mon Sep 17 00:00:00 2001 From: Taesung Hwang Date: Tue, 10 Oct 2023 14:45:35 -0700 Subject: [PATCH] Close F23 Project Teams sign-ups & update time - Refactor registration and join messages to show based on open status - Update project teams weekly meeting time --- src/app/pages/PT/PT.js | 163 ++++++++++++++++++++++------------------- 1 file changed, 88 insertions(+), 75 deletions(-) diff --git a/src/app/pages/PT/PT.js b/src/app/pages/PT/PT.js index 36ee6060..b06a49c5 100644 --- a/src/app/pages/PT/PT.js +++ b/src/app/pages/PT/PT.js @@ -1,89 +1,102 @@ import { Helmet } from 'react-helmet'; -// import { Link } from 'react-router-dom'; +import { Link } from 'react-router-dom'; import { Text } from 'app/components'; import { Section, Space, Icon } from 'app/Symbols.js'; export const PROJECT_TEAMS_GOOGLE_FORM = 'https://forms.gle/YoNb5Goj6gw6YGQg6'; -const PT = () => ( - <> - - Project Teams – Design at UCI - -
- - - Project Teams - - -
- - Project Team applications for Fall 2023 are open. - +function PT() { + const registrationMessage = ( + + To participate, complete the{' '} + + + project teams registration form + + {' '} + by Sunday, October 8th, 2023 at 11:59 PM PDT. + + ); - - To participate, complete the{' '} - - - project teams registration form - - {' '} - by Sunday, October 8th, 2023 at 11:59 PM PDT. - + const joinMessage = ( + + To get involved,{' '} + + join our newsletter + {' '} + for notifications about when the next applications come out! + + ); -
- What are Project Teams? - - Project Teams is a quarterly program that provides students with design - experience in a collaborative setting. Each quarter, students form teams - and work on a design project of their choice (e.g. UI/UX design, - marketing design, graphic design) from start to finish. Participants - learn essential design skills along the way, become familiar with - industry-standard tools, and have a completed project for their portfolio - at the end of it! No prior experience is necessary, but Project Teams - will be on a first-come, first-served basis due to limited capacity. - - - For Fall 2023, Project Teams will meet Thursdays at 4–6 PM from - weeks 2 through 9. - - {/* - - To get involved, join us to get - notifications about when the next applications come out! + const open = false; + + return ( + <> + + Project Teams – Design at UCI + +
+ + + Project Teams - */} + +
+ + Project Team applications for Fall 2023 have closed. + + + {open ? registrationMessage : joinMessage} - - {/* Fall 2022 PT schedule - - Week 2 / Oct 6 @ 8 pm - Meet your Team + Plan your Project -
- Week 3 / Oct 13 @ 8 pm -
- Week 4 / Oct 20 @ 8 pm -
- Week 5 / Oct 27 @ 8 pm -
- Week 6 / Nov 3 @ 8 pm -
- Week 7 / Nov 10 @ 8 pm -
- Week 8 / Nov 17 @ 8 pm
- Week 9 / Gen Meeting - Demo Day -
*/} -
-
- -); + What are Project Teams? + + Project Teams is a quarterly program that provides students with + design experience in a collaborative setting. Each quarter, students + form teams and work on a design project of their choice (e.g. UI/UX + design, marketing design, graphic design) from start to finish. + Participants learn essential design skills along the way, become + familiar with industry-standard tools, and have a completed project + for their portfolio at the end of it! No prior experience is + necessary, but Project Teams will be on a first-come, first-served + basis due to limited capacity. + + + For Fall 2023, Project Teams will meet Thursdays at 6:30–8:30 PM + from weeks 2 through 9. + + + {/* + Fall 2022 PT schedule + + Week 2 / Oct 6 @ 8 pm - Meet your Team + Plan your Project +
+ Week 3 / Oct 13 @ 8 pm +
+ Week 4 / Oct 20 @ 8 pm +
+ Week 5 / Oct 27 @ 8 pm +
+ Week 6 / Nov 3 @ 8 pm +
+ Week 7 / Nov 10 @ 8 pm +
+ Week 8 / Nov 17 @ 8 pm +
+ Week 9 / Gen Meeting - Demo Day +
*/} +
+
+ + ); +} export default PT;