|
1 | 1 | import EducationItem from "./EducationItem.tsx"; |
| 2 | +import SectionTitle from "../common/SectionTitle.tsx"; |
2 | 3 |
|
3 | 4 | export default function Education() { |
4 | 5 | return ( |
5 | 6 | <> |
6 | 7 | <div className="flex flex-col pb-8"> |
7 | | - <div className="text-3xl md:text-5xl py-1 md:py-4 px-2 md:px-0" id="education"> |
8 | | - Education |
9 | | - </div> |
| 8 | + |
| 9 | + <SectionTitle title="Education" id="education"/> |
10 | 10 |
|
11 | 11 | <div className="flex flex-col gap-8 pt-2"> |
12 | 12 | <EducationItem |
13 | | - name="BSc. - Digital Media Software Engineering" |
| 13 | + name="BSc. Digital Media Software Engineering" |
14 | 14 | institution="Ferris State University" |
15 | | - startDate="2022" |
| 15 | + startDate="May 2022" |
16 | 16 | endDate="May 2026" |
17 | 17 | gpa="4.0" |
18 | 18 | link="https://ferris.edu" |
19 | | - /> |
20 | | - |
21 | | - <EducationItem |
22 | | - name="AA - General Studies" |
23 | | - institution="Kalamazoo Valley Community College" |
24 | | - startDate="Sept 2016" |
25 | | - endDate="May 2021" |
26 | | - gpa="3.5" |
27 | | - link="https://kvcc.edu" |
| 19 | + coursework={[ |
| 20 | + "Project Management Fundamentals", |
| 21 | + "Computer Programming 1", |
| 22 | + "Computer Programming 2", |
| 23 | + "SENG Methodologies - Processes", |
| 24 | + "Software Requirements Management", |
| 25 | + "Intro to Database Design", |
| 26 | + "Software Configuration Management", |
| 27 | + "Software Data Structures", |
| 28 | + "Software Component Design", |
| 29 | + "Engineering Enterprise Software Applications", |
| 30 | + "Programming Languages", |
| 31 | + "Introduction to Machine Learning", |
| 32 | + "Programming Graphical Interfaces", |
| 33 | + "Software Quality Assurance", |
| 34 | + "Software Engineering Tools", |
| 35 | + "Software Design - Architecture", |
| 36 | + "Applied Machine Learning Software", |
| 37 | + "SENG Applied Internship", |
| 38 | + "Software Development Industry Certification", |
| 39 | + "Capstone in Software Engineering", |
| 40 | + "Intelligence and Data Warehousing", |
| 41 | + "Intro to Cloud Application Development" |
| 42 | + ]} |
28 | 43 | /> |
29 | 44 |
|
30 | 45 | <EducationItem |
|
0 commit comments