diff --git a/public/imgs/projects/cricchetto24.png b/public/imgs/projects/cricchetto24.png new file mode 100644 index 0000000..0676480 Binary files /dev/null and b/public/imgs/projects/cricchetto24.png differ diff --git a/public/imgs/projects/project_script_manager.png b/public/imgs/projects/project_script manager.png similarity index 100% rename from public/imgs/projects/project_script_manager.png rename to public/imgs/projects/project_script manager.png diff --git a/src/components/ProjectCard.tsx b/src/components/ProjectCard.tsx index b7a035a..318790e 100644 --- a/src/components/ProjectCard.tsx +++ b/src/components/ProjectCard.tsx @@ -37,7 +37,7 @@ export default function ProjectCard( { project_info }: IProps) return <>
-
{ /* Image container */} +
{ /* Image container */}
@@ -46,7 +46,7 @@ export default function ProjectCard( { project_info }: IProps)

{project_info?.company} @ {project_info?.location} - from {start_month} {start_year} {end_year ? <>{"to " + end_month + " " + end_year} : <>— ongoing}

{project_info?.description}

-
+
{ project_info?.technologies.map((tec: string) => { let tooltip_tec_id: string = tec + img_id diff --git a/src/pages/ContactMe.tsx b/src/pages/ContactMe.tsx index 9f25222..31bcf82 100644 --- a/src/pages/ContactMe.tsx +++ b/src/pages/ContactMe.tsx @@ -13,7 +13,7 @@ function ContactMe() { return <>
-

Let's keep in touch!

+

Let's keep in touch!

@@ -27,11 +27,11 @@ function ContactMe()
- +
- +
diff --git a/src/pages/Projects.tsx b/src/pages/Projects.tsx index a29fa26..ca265c2 100644 --- a/src/pages/Projects.tsx +++ b/src/pages/Projects.tsx @@ -33,7 +33,7 @@ function Projects() name: "Project Ercole", company: "Arakne S.R.L", location: "Rome, IT", - description: "The main goal was to create a software that, given a fragments of ancient pots dataset, resembles the original pictures. Two different approaches have been tested: trying to look up online for a ready-to-use solution and, in parallel, developing a procedural Python software.", + description: "The main goal was to create a software that, given a dataset containing pictures of fragments of ancient pots, resembles the original pictures. Two different approaches have been tested: trying to look up online for a ready-to-use solution and, in parallel, developing a procedural Python software. We eventually discovered 'JigsawNet' by Le Canyu and Li Xin - on GitHub, a CNN capable of resembling pieces of an image without knowing how the original picture would have looked like.", start_date: "10/2023", end_date: "11/2023", is_source_available: false, @@ -42,7 +42,7 @@ function Projects() ] }, { - name: "Project Script_Manager", + name: "Project Script Manager", company: "NEAT S.R.L", location: "Rome, IT", description: "The project aimed to develop a working IDE that could store files in a server, organize them in directories and did have to support multiple programming languages. I worked in the front-end side, integrating Monaco Editor in Vue.js and providing all the features a VS Code-like editor has.", @@ -52,6 +52,18 @@ function Projects() technologies: [ "VueJS", "TypeScript", "NodeJS", "Bootstrap" ] + }, + { + name: "Cricchetto24", + company: "Gruppo Maggioli", + location: "Sant'Arcangelo di Romagna, IT", + description: "During my internship period (in the 4th year of High School) I worked in Gruppo Maggioli, where our tutor required us to develop a clone of 'AutoScout24' - an online platform where you can buy or sell cars. The classroom was split in 2 teams: Front-End and Back-End. I ended up leading the Front-End team and we built all the necessary and essential pages: Home, Search (and Detailed Search), Results Page and Private Dashboard.", + start_date: "05/2022", + end_date: "06/2022", + is_source_available: false, + technologies: [ + "Angular", "TypeScript", "JavaScript", "Bootstrap", "HTML", "CSS" + ] } ]