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