-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add director application button * team description section added * tech, design, marketing, spons desc done * all team descriptions updated --------- Co-authored-by: trishnasharma <[email protected]>
- Loading branch information
1 parent
7d55fc2
commit 6cd2d8e
Showing
7 changed files
with
357 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import React, { useState } from 'react'; | ||
import styles from '@/styles/faq/faq.module.scss'; | ||
import teamDescriptions from './teamDescriptions'; | ||
import AccordionItem from './accordionItem'; | ||
|
||
const Team = () => { | ||
const [openedIndex, setOpenedIndex] = useState(-1); | ||
|
||
return ( | ||
<section | ||
id="faq" | ||
style={{ paddingBottom: 0 }} | ||
className={styles.faqContainer} | ||
> | ||
<div className={styles.faqContent}> | ||
<h2> | ||
<center>Team Descriptions</center> | ||
</h2> | ||
<ul className={styles.questionList}> | ||
{teamDescriptions.map(({ team, description }, index) => ( | ||
<AccordionItem | ||
key={team} | ||
itemIndex={index} | ||
openedIndex={openedIndex} | ||
setOpenedIndex={setOpenedIndex} | ||
question={team} | ||
answer={description} | ||
/> | ||
))} | ||
</ul> | ||
</div> | ||
</section> | ||
); | ||
}; | ||
|
||
export default Team; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,306 @@ | ||
const teamDescriptions = [ | ||
{ | ||
team: 'Technical', | ||
description: ( | ||
<> | ||
Are you interested in web development with a desire to learn and | ||
collaborate with a team of developers? If you have a foundation in | ||
HTML/CSS, JavaScript, and/or React.js and are eager to expand your skill | ||
set, join the Technical team! As a Technical Director, you will get the | ||
chance to collaborate with a team of developers to create and maintain | ||
the website and web applications, participate in code review sessions, | ||
and offer creative solutions. | ||
<br /> | ||
<br /> | ||
<strong>Qualifications:</strong> | ||
<br /> | ||
<ul> | ||
<li>Basic knowledge of HTML, CSS, and JavaScript.</li> | ||
<li>Familiarity with React.js is a plus.</li> | ||
<li> | ||
Strong desire to learn and grow in the field of web development. | ||
</li> | ||
<li>Excellent problem-solving skills and attention to detail.</li> | ||
<li> | ||
Ability to work well in a team and take constructive feedback | ||
positively. | ||
</li> | ||
<li> | ||
Passion for technology and a proactive approach to keeping up with | ||
industry trends. | ||
</li> | ||
</ul> | ||
<br /> | ||
<strong>Why Join Us:</strong> | ||
<br /> | ||
<ul> | ||
<li> | ||
Opportunity to work on diverse and exciting web development | ||
projects. | ||
</li> | ||
<li>Gain hands-on experience and improve your technical skills.</li> | ||
<li>Collaborate with a team of motivated developers.</li> | ||
<li>Add impressive projects to your resume.</li> | ||
<li>Create valuable connections in the tech industry.</li> | ||
<li> | ||
Personal and professional growth in a student-run organization. | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
{ | ||
team: 'Operations', | ||
description: ( | ||
<> | ||
As an Operations Director, you will play a crucial role in ensuring the | ||
smooth execution of our initiatives. Your quick decision-making, | ||
organization, and responsibility will shine as you tackle challenges | ||
head-on. You'll be a key communicator and leader, working closely | ||
with the team and being ready to learn and develop organizational skills | ||
as you contribute to the success of one of the biggest hackathons in | ||
California. | ||
<br /> | ||
<br /> | ||
<strong>Qualifications:</strong> | ||
<br /> | ||
<ul> | ||
<li> | ||
Strong organizational skills with a passion for attention to detail. | ||
</li> | ||
<li> | ||
Quick decision-making abilities, particularly in high-pressure | ||
situations. | ||
</li> | ||
<li> | ||
A proactive and responsible approach to tackling challenges with | ||
enthusiasm and a willingness to learn and grow. | ||
</li> | ||
<li> | ||
Thrive in a team setting, fostering a spirit of collaboration and | ||
mutual support. | ||
</li> | ||
<li>Excellent communication skills.</li> | ||
<li> | ||
A passion for learning and developing organizational and leadership | ||
skills. | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
{ | ||
team: 'Marketing', | ||
description: ( | ||
<> | ||
As a Marketing Director, you will be right at the heart of our marketing | ||
efforts, leveraging your creative thinking, organization, | ||
responsibility, and time management skills to help us engage our | ||
audience and promote our initiatives effectively. Collaboration with | ||
fellow team members and other departments is a key aspect of this role. | ||
<br /> | ||
<br /> | ||
{/* <strong>Responsibilities</strong> | ||
<ul> | ||
<li>Creative Thinking: Bring fresh and innovative ideas to our marketing campaigns, creating content that captivates and resonates with our audience.</li> | ||
<li>Organization: Assist in maintaining a well-organized marketing calendar, ensuring that campaigns and posts are delivered on time.</li> | ||
<li>Time Management: Juggle multiple tasks and deadlines efficiently, keeping marketing initiatives on track.</li> | ||
<li>Social Media Management: Manage and curate content for our social media platforms, creating engaging posts and fostering audience interaction.</li> | ||
<li>Collaboration: Collaborate with other team members and departments within the organization to align marketing efforts and achieve our collective goals.</li> | ||
</ul> | ||
<br /> */} | ||
<strong>Qualifications:</strong> | ||
<ul> | ||
<li> | ||
Enthusiasm for marketing and a strong desire to learn and grow in | ||
the field. | ||
</li> | ||
<li>Creative mindset with the ability to think strategically.</li> | ||
<li> | ||
Strong organizational skills and a high level of responsibility. | ||
</li> | ||
<li>Effective time management abilities.</li> | ||
<li> | ||
Basic understanding of social media platforms and their dynamics. | ||
</li> | ||
</ul> | ||
<br /> | ||
<strong>Bonus Skills:</strong> | ||
<ul> | ||
<li>Prior experience in social media advertising is a plus.</li> | ||
<li> | ||
Photography skills are a bonus, to generate better quality content | ||
for all events including the Day of Event hackathon | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
{ | ||
team: 'Sponsorship', | ||
description: ( | ||
<> | ||
As a Sponsorship Director, you will take the lead in securing vital | ||
sponsorships, relying on your confidence and quick thinking to engage | ||
potential partners. Your knack for negotiation, proactive approach, and | ||
talent for relationship building will be instrumental in fueling our | ||
initiatives. | ||
<br /> | ||
<br /> | ||
<strong>Qualifications:</strong> | ||
<ul> | ||
<li> | ||
Confidence and an ability to think on your feet in negotiations. | ||
</li> | ||
<li>A natural talent for building and maintaining relationships.</li> | ||
<li> | ||
Proactive mindset, always on the lookout for new sponsorship | ||
opportunities. | ||
</li> | ||
<li> | ||
Strong organizational skills and the ability to manage multiple | ||
sponsorship commitments efficiently. | ||
</li> | ||
<li> | ||
A genuine desire to learn and adapt, exploring new outreach and | ||
networking strategies. | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
{ | ||
team: 'Finance', | ||
description: ( | ||
<> | ||
As a Finance Director, you will play a vital role in managing our | ||
finances, ensuring the sustainability of our initiatives. Your passion | ||
and interest in budgeting, financial planning, and fundraising, combined | ||
with your outstanding communication skills, will drive our financial | ||
success. Your can-do attitude will be an invaluable asset as you | ||
contribute to HackDavis' growth. | ||
<br /> | ||
<br /> | ||
<strong>Qualifications:</strong> | ||
<ul> | ||
<li> | ||
Strong financial acumen with an interest in budgeting and financial | ||
planning. | ||
</li> | ||
<li> | ||
Good understanding of cash flow management and financial | ||
forecasting. | ||
</li> | ||
<li> | ||
Fundraising experience or a willingness to learn and engage with | ||
donors and sponsors effectively. | ||
</li> | ||
<li>Exceptional communication skills, both written and verbal.</li> | ||
<li> | ||
A can-do attitude, with the ability to adapt and excel in a | ||
fast-paced environment. | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
{ | ||
team: 'External', | ||
description: ( | ||
<> | ||
As our External Outreach Coordinator, you will be a driving force behind | ||
our external engagement efforts, using your initiative to learn, | ||
proactive approach, and personable energy. Familiarity with HackDavis or | ||
hackathons is not mandatory, but is a plus, as you will be connecting | ||
with clubs on campus, organizations off-campus, industry leaders, our | ||
alumni community, and current students, all while confidently and | ||
effectively communicating our mission. | ||
<br /> | ||
<br /> | ||
<strong>Qualifications:</strong> | ||
<ul> | ||
<li> | ||
Spearhead the planning and execution of external events, showcasing | ||
your organizational skills and attention to detail. | ||
</li> | ||
<li> | ||
A proactive and personable demeanor, radiating energy and | ||
enthusiasm. | ||
</li> | ||
<li>Strong communication skills, both written and verbal.</li> | ||
<li>Confidence in connecting with diverse groups and individuals.</li> | ||
<li> | ||
Initiative to learn and develop organizational and communication | ||
skills. | ||
</li> | ||
<li> | ||
Outreach to clubs on-campus, students and alumni, and off-campus | ||
industry leaders; being able to network and foster meaningful | ||
connections | ||
</li> | ||
<li> | ||
Familiarity with HackDavis or hackathons is preferred but not | ||
mandatory. | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
{ | ||
team: 'Design', | ||
description: ( | ||
<> | ||
Are you a creative, innovative, and proactive designer with a passion | ||
for human-centered design? Join our team and help us create | ||
brand-consistent, minimal, and aesthetically pleasing designs that | ||
captivate and excite our audience. Your creative talent will play a | ||
pivotal role in shaping the future of HackDavis. We are looking for | ||
talented individuals to join our design team in various roles: | ||
<br /> | ||
<br /> | ||
<strong>Brand Designer:</strong> | ||
<ul> | ||
<li>Craft the brand identity for the Hackathon season.</li> | ||
<li>Storytelling and experimental design.</li> | ||
<li> | ||
Proficiency in illustration using Figma and Adobe Illustrator. | ||
</li> | ||
</ul> | ||
<br /> | ||
<strong>Product Designer:</strong> | ||
<ul> | ||
<li> | ||
Design products that aim to delight and leave an impression, | ||
including apparel, stickers, and branded items. | ||
</li> | ||
<li>Detail-oriented with a focus on product specs.</li> | ||
<li>Conduct market research to inform design decisions.</li> | ||
</ul> | ||
<br /> | ||
<strong>Content Designer:</strong> | ||
<ul> | ||
<li> | ||
Create eye-catching, compelling content for social media and printed | ||
flyers. | ||
</li> | ||
<li>Deep understanding of the audience.</li> | ||
<li>Attention to detail to ensure engaging visuals.</li> | ||
</ul> | ||
<br /> | ||
<strong>UI Designer:</strong> | ||
<ul> | ||
<li> | ||
Design beautiful and intuitive web experiences that bring joy to | ||
users. | ||
</li> | ||
<li>Focus on responsive design and intuitive user experiences.</li> | ||
<li> | ||
Proficiency in wireframing and creating delightful web interfaces. | ||
</li> | ||
</ul> | ||
</> | ||
), | ||
}, | ||
]; | ||
|
||
export default teamDescriptions; |
Oops, something went wrong.