Skip to content

Commit

Permalink
Updated work experiences
Browse files Browse the repository at this point in the history
  • Loading branch information
webdevsk committed Sep 5, 2023
1 parent 9214444 commit 1040481
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 13 deletions.
4 changes: 2 additions & 2 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ And negate them twice from pdf initial width and height*/
}

#pdf-container {
height: 1056px;
/* height: 1056px; */
max-width: 816px;
padding: 5rem;
width: 100%;
@apply bg-white p-8 md:p-20;
}

#pdf {
height: calc(1056px - 5rem * 2);
/* height: calc(1056px - 5rem * 2); */
max-width: calc(816px - 5rem * 2);
width: 100%;
@apply bg-white;
Expand Down
61 changes: 57 additions & 4 deletions src/resume.js
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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: [
// {
Expand Down
4 changes: 2 additions & 2 deletions src/templates/Template1.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
17 changes: 12 additions & 5 deletions src/templates/Template1.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ const Template1 = () => {
</div>
))}
</div>
<div className="col -ms-2">
<p className="title">Live Resume Link:</p>
<p>{data.liveLink}</p>
</div>
</div>

{/* about me */}
Expand Down Expand Up @@ -139,13 +143,16 @@ const Template1 = () => {
<h6>{job.position}</h6>
</div>
<div className="company">
<h6>{job.company}</h6>
<small>({job.location})</small>
{job.company && <h6>{job.company}</h6>}
{job.location && <small>({job.location})</small>}
</div>
<div className="date">
<h6>
{job.dateFrom} - {job.dateTo}
</h6>
{(job.dateFrom || job.dateTo) && (
<h6>
{job.dateFrom} {job.dateFrom && job.dateTo && " - "}
{job.dateTo}
</h6>
)}
</div>
</div>
<div>
Expand Down

0 comments on commit 1040481

Please sign in to comment.