diff --git a/pages/internship.tsx b/pages/internship.tsx new file mode 100644 index 00000000..a2f137fb --- /dev/null +++ b/pages/internship.tsx @@ -0,0 +1,141 @@ +import { NextSeo } from 'next-seo'; + +import { + Accordion, + AccordionItem, + AccordionItemHeading, + AccordionItemButton, + AccordionItemPanel, +} from 'react-accessible-accordion'; +import Banner from '../components/Banner'; +import CommitteeInternshipInfo from '../components/Internship/CommitteeInternshipInfo'; +import InternshipTimeline from '../components/Internship/InternshipTimeline'; +import NextSteps from '../components/Internship/NextSteps'; +import Layout from '../components/Layout'; + +import data from '../data'; + +import styles from '../styles/pages/Internship.module.scss'; + +const { committees, internship, board } = data; + +const internshipInfo = board.concat(committees); +const { items, testimonials, QA } = internship; + +function InternshipPage() { + return ( + + + +
+

ACM Internship Program

+ {/* eslint-disable-next-line max-len */} +

+ The ACM internship program is closed.

Check back in upcoming + quarters for Officer Recruitment. +

+

+

+ The ACM Internship program is a program that facilitates the + transition of UCLA students to ACM officers. Interns learn about the + ACM committee they are interning for and ACM in general before + becoming an official ACM officer. +

+ +

+ Click on the different ACM subcommittee icons in order to learn more + about what interns in each committee do and scroll down to find more + information on how you can apply to the Internship Program. +

+
+ +
+

Applications

+ +
+
+ {items.map((item, i) => ( +
+ {item.date}   + {item.name} +

{item.info}

+
+ ))} +
+ {/* */} +
+
+
+

Intern to Officer Transition

+

Learn more about each committee's transition process!

+
+ {internshipInfo.map((committee) => ( + + ))} +
+
+
+

Hear from past interns!

+
+ {testimonials.map((testimonial, i) => ( +
+
{testimonial.quote}
+

+ - {testimonial.name}
{testimonial.committee} intern,{' '} + {testimonial.year} +

+
+ ))} +
+
+
+

FAQ

+ + {QA.map((QandA, i) => ( + + + + {QandA.title} + + + +

{QandA.content}

+
+
+ ))} +
+
+
+ ); +} + +export default InternshipPage;