Skip to content

Commit

Permalink
add extra activities
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenzopalaia committed Dec 7, 2023
1 parent 12d51f7 commit 574f114
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 16 deletions.
3 changes: 1 addition & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lorenzo Palaia</title>
<title>Lorenzo Palaia | Software Engineer</title>
</head>
<body>
<div id="app"></div>
Expand Down
3 changes: 0 additions & 3 deletions public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 20 additions & 4 deletions src/assets/personalInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"role": "Software Engineer",
"location": "Rome, Italy",
"badges": ["Python", "HTML"],
"url": "https://www.github.com/lorenzopalaia"
"url": "https://www.github.com/lorenzopalaia",
"show": true
}
],
"showedProjects": [
Expand All @@ -39,10 +40,23 @@
"Best Marks: Operative Systems, Functional Programming, Programming Techniques 4.0 GPA cum laude, Data Structures & Algorithms, Software Design, Parallel Computing, Electronics, Web Development 4.0 GPA"
],
"location": "Rome, Italy",
"url": "https://www.uniroma1.it"
"url": "https://www.uniroma1.it",
"show": true
}
],
"extraActivities": [
{
"date": "Nov 2023",
"name": "Boolean Data Week",
"role": "",
"description": [

],
"location": "Remote",
"badges": ["Python", "Pandas", "Tableau"],
"url": "https://www.boolean.careers",
"show": false
},
{
"date": "Mar 2023",
"name": "Randstad <Code.Your.Future> AI Hackathon",
Expand All @@ -53,7 +67,8 @@
],
"location": "Rome, Italy",
"badges": ["Python", "Tensorflow"],
"url": "https://www.github.com/lorenzopalaia/Randstad-AI-Hackathon"
"url": "https://www.github.com/lorenzopalaia/Randstad-AI-Hackathon",
"show": true
},
{
"date": "Sep 2021 - Oct 2022",
Expand All @@ -67,7 +82,8 @@
],
"location": "Rome, Italy",
"badges": ["Python", "Tensorflow"],
"url": "https://www.sasa-aerospace.it/flight-team"
"url": "https://www.sasa-aerospace.it/flight-team",
"show": true
}
],
"skills": [
Expand Down
14 changes: 7 additions & 7 deletions src/components/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
:key="work"
@click="redirectToExternalLink(work.url)"
>
<div class="w-1/4 mx-4">
<div class="w-1/4 mx-4" v-if="work.show">
<p class="uppercase font-light text-neutral-400 text-sm mt-6">{{ work.date }}</p>
</div>
<div class="w-3/4 mx-4">
<div class="w-3/4 mx-4" v-if="work.show">
<p class="group-hover/inside:text-primary text-neutral-300 font-normal mb-0">
{{ work.company }}
<font-awesome-icon
Expand Down Expand Up @@ -177,10 +177,10 @@
:key="degree"
@click="redirectToExternalLink(degree.url)"
>
<div class="w-1/4 mx-4">
<div class="w-1/4 mx-4" v-if="degree.show">
<p class="uppercase font-light text-neutral-400 text-sm mt-6">{{ degree.date }}</p>
</div>
<div class="w-3/4 mx-4">
<div class="w-3/4 mx-4" v-if="degree.show">
<p class="group-hover/inside:text-primary text-neutral-300 font-normal mb-0">
{{ degree.degree }}
<font-awesome-icon
Expand Down Expand Up @@ -224,10 +224,10 @@
:key="activity"
@click="redirectToExternalLink(activity.url)"
>
<div class="w-1/4 mx-4">
<div class="w-1/4 mx-4" v-if="activity.show">
<p class="uppercase font-light text-neutral-400 text-sm mt-6">{{ activity.date }}</p>
</div>
<div class="w-3/4 mx-4">
<div class="w-3/4 mx-4" v-if="activity.show">
<p class="group-hover/inside:text-primary text-neutral-300 font-normal mb-0">
{{ activity.name }}
<font-awesome-icon
Expand Down Expand Up @@ -373,7 +373,7 @@ export default {
},
async mounted() {
document.title = this.info.name;
document.title = "Lorenzo Palaia | Software Engineer";
await this.getRepos();
},
};
Expand Down

0 comments on commit 574f114

Please sign in to comment.