diff --git a/src/portfolio/data/workExperienceData.ts b/src/portfolio/data/workExperienceData.ts index 44527e9..033b68b 100644 --- a/src/portfolio/data/workExperienceData.ts +++ b/src/portfolio/data/workExperienceData.ts @@ -2,7 +2,7 @@ import {WorkExperienceArgs} from "@/src/portfolio/helpers/WorkExperience"; const workExperienceData : WorkExperienceArgs[] = [ { - industry: "Software", + industry: "Software & AI", title: "Software Developer", company: "Softwire", city: "Manchester", @@ -47,8 +47,8 @@ const workExperienceData : WorkExperienceArgs[] = [ { industry: "Education", title: "Computer Science Teaching Intern", - company: "Sacred Heart of Mary Girls' School in Upminster", - city: "London", + company: "Sacred Heart of Mary Girls' School", + city: "Upminster", country: "United Kingdom", startDate: "June 2022", endDate: "July 2022" @@ -100,19 +100,18 @@ const workExperienceData : WorkExperienceArgs[] = [ }, ]; -// todo update -export const workExperienceParagraph = - "Since the age of 16, I have been actively engaged in various professional roles across multiple industries, " + +export const workExperienceParagraph = + "Since the age of 16, I have actively engaged in various professional roles across multiple industries, " + "including Artificial Intelligence, Software, Education, and Hospitality. My journey began in the hospitality " + - "sector, working as a Customer Assistant at McDonald's in Warsaw, Poland, and later at Morrisons in London, UK. " + - "I then transitioned into the education sector, serving as a Coding Tutor at Kodland, a Tutor at FireTechCamp, " + - "and a Computer Science Teaching Intern at Sacred Heart of Mary Girls' School in Upminster. I also volunteered " + - "as a Buddy Scheme Mentor at Queen Mary University, where I later took on the role of a Laboratory Demonstrator. " + - "In the software industry, I gained experience as a Software Developer Intern at Softwire. During my masters, I " + - "have been contributing to the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotation " + - "Tech. Upon Graduation, I was offered to join Softwire as a Software Developer and I decided to take the offer " + - "and to work in their regional North West office in Manchester know for pushing innovation in the AI and Data " + - "Sector Throughout these diverse experiences, I have developed a strong work ethic and a wide range of " + - "transferable skills."; + "sector, where I developed strong interpersonal and customer service skills. I then transitioned into the " + + "education sector, serving as a Coding Tutor at Kodland, a Tutor at FireTechCamp, and a Computer Science " + + "Teaching Intern at Sacred Heart of Mary Girls' School in Upminster. I also volunteered as a Buddy Scheme " + + "Mentor at Queen Mary University, where I later became a Laboratory Demonstrator. In the software industry, " + + "I gained experience as a Software Developer Intern at Softwire. During my master's degree, I contributed to " + + "the Artificial Intelligence industry as a Programming Data Annotator at DataAnnotation Tech. Upon graduation, " + + "I accepted a full-time offer to join Softwire as a Software Developer in their North West office in Manchester, " + + "known for its focus on innovation in the AI and Data sector. At Softwire, I have gained valuable experience " + + "working on several AI projects, applying my theoretical machine learning knowledge to real-world problems. " + + "Across these diverse roles, I have developed a strong work ethic and a broad set of transferable skills."; export default workExperienceData; \ No newline at end of file diff --git a/src/portfolio/helpers/WorkExperience.tsx b/src/portfolio/helpers/WorkExperience.tsx index aff2065..108fe0f 100644 --- a/src/portfolio/helpers/WorkExperience.tsx +++ b/src/portfolio/helpers/WorkExperience.tsx @@ -2,7 +2,7 @@ import {FC} from "react"; import styles from "../styling/experience.module.scss"; export type WorkExperienceArgs = { - industry? : "Education" | "Software" | "Hospitality" | "Artificial Intelligence", + industry? : "Education" | "Software" | "Software & AI" | "Hospitality" | "Artificial Intelligence", company : string, startDate : string, title : string, @@ -17,8 +17,10 @@ const WorkExperience : FC = (props) => { switch (props.industry) { case "Education": return "🎓"; - case "Software": + case "Software & AI": return "👨‍💻"; + case "Software": + return "💻"; case "Hospitality": return "🛎️"; case "Artificial Intelligence": diff --git a/src/portfolio/sections/Experience.tsx b/src/portfolio/sections/Experience.tsx index e4caa03..30e6280 100644 --- a/src/portfolio/sections/Experience.tsx +++ b/src/portfolio/sections/Experience.tsx @@ -6,7 +6,7 @@ import workExperienceData, {workExperienceParagraph} from "@/src/portfolio/data/ const Experience = () => { const calcPagesOnWidth = (width : number) => { - return Math.floor(width / 700 + 1); + return Math.floor(width / 800 + 1); }; const [pages, setPages] = useState(calcPagesOnWidth(1000)); diff --git a/src/portfolio/styling/intro.module.scss b/src/portfolio/styling/intro.module.scss index 264899d..dfb7a56 100644 --- a/src/portfolio/styling/intro.module.scss +++ b/src/portfolio/styling/intro.module.scss @@ -68,6 +68,8 @@ font-size: 0.7em; .text { + margin: 2em 0 2em 0; + flex-grow: 1; text-align: center; line-height: 1.5; @@ -80,6 +82,7 @@ .greeting { color: $accent_colour; + font-weight: 600; font-style: italic; } }