From 10404817d6468e23d6174f4ea9c367445ed5e2ac Mon Sep 17 00:00:00 2001 From: webdevzsk <72684302+webdevsk@users.noreply.github.com> Date: Tue, 5 Sep 2023 15:28:11 +0600 Subject: [PATCH] Updated work experiences --- src/index.css | 4 +-- src/resume.js | 61 ++++++++++++++++++++++++++++++++++--- src/templates/Template1.css | 4 +-- src/templates/Template1.jsx | 17 ++++++++--- 4 files changed, 73 insertions(+), 13 deletions(-) diff --git a/src/index.css b/src/index.css index dd5a32c..998778c 100644 --- a/src/index.css +++ b/src/index.css @@ -15,7 +15,7 @@ And negate them twice from pdf initial width and height*/ } #pdf-container { - height: 1056px; + /* height: 1056px; */ max-width: 816px; padding: 5rem; width: 100%; @@ -23,7 +23,7 @@ And negate them twice from pdf initial width and height*/ } #pdf { - height: calc(1056px - 5rem * 2); + /* height: calc(1056px - 5rem * 2); */ max-width: calc(816px - 5rem * 2); width: 100%; @apply bg-white; diff --git a/src/resume.js b/src/resume.js index df863ae..2f6f215 100644 --- a/src/resume.js +++ b/src/resume.js @@ -48,11 +48,11 @@ const resume = { experiences: [ { position: - "E-commerce Operations, Retail Operations and Inventory Management Associate.", - company: "Wadi Groceries", + "E-commerce Operations Associate, Inventory Management Associate.", + company: "Wadi Groceries, Carrefour", location: "Riyadh, Saudiarabia", - dateFrom: "01-4-7", - dateTo: "Present", + dateFrom: "APR 2018", + dateTo: "MAR 2019", skills: [ "Communication skills", "Organizational skills", @@ -70,6 +70,59 @@ const resume = { "Stay up-to-date on the latest ecommerce technologies", ], }, + { + position: "Freelance Food Delivery Driver", + company: "", + location: "", + dateFrom: "JUNE 2019", + dateTo: "OCT 2019", + skills: ["Time management", "Customer service", "Communication"], + responsibilities: [ + "Receive orders on phone", + "Pick up and deliver food on time", + "Maintain a clean and organized car", + "Follow safety procedures", + "Communicate with customers regarding order status", + ], + }, + { + position: "Returns Processor", + company: "JollyChik Warehouse SA", + location: "Riyadh, Saudiarabia", + dateFrom: "FEB 2018", + dateTo: "APR 2018", + skills: [ + "Attention to detail", + "Accuracy", + "Ability to work independently and as part of a team", + "Technical skills (scanning, data entry)", + ], + responsibilities: [ + "Scan returned items and update inventory records", + "Inspect returned items for damage", + "Process returns according to company policy", + "Keep warehouse clean and organized", + ], + }, + { + position: "Flyer Distributor (Part time)", + company: "Moneygram Financial Service", + location: "Riyadh, Saudiarabia", + dateFrom: "JUL 2017", + dateTo: "FEB 2018", + skills: [ + "Persuasion skills", + "Communication skills (verbal and written)", + "Interpersonal skills", + "Flexibility", + ], + responsibilities: [ + "Distribute flyers to targeted areas", + "Build relationships with potential customers", + "Promote the company's services", + "Maintain a positive attitude and demeanor", + ], + }, ], educations: [ // { diff --git a/src/templates/Template1.css b/src/templates/Template1.css index e5423b8..081336f 100644 --- a/src/templates/Template1.css +++ b/src/templates/Template1.css @@ -64,10 +64,10 @@ @apply bg-theme py-1 text-center; } #experiences .heading > * { - @apply text-gray-50; + @apply text-white; } #experiences .content { - @apply mt-template flex flex-col gap-y-4; + @apply mt-template flex flex-col gap-y-8; } #experiences .sections { @apply flex flex-col gap-y-2; diff --git a/src/templates/Template1.jsx b/src/templates/Template1.jsx index 2bad45a..53629bc 100644 --- a/src/templates/Template1.jsx +++ b/src/templates/Template1.jsx @@ -71,6 +71,10 @@ const Template1 = () => { ))} +
+

Live Resume Link:

+

{data.liveLink}

+
{/* about me */} @@ -139,13 +143,16 @@ const Template1 = () => {
{job.position}
-
{job.company}
- ({job.location}) + {job.company &&
{job.company}
} + {job.location && ({job.location})}
-
- {job.dateFrom} - {job.dateTo} -
+ {(job.dateFrom || job.dateTo) && ( +
+ {job.dateFrom} {job.dateFrom && job.dateTo && " - "} + {job.dateTo} +
+ )}