Skip to content

Commit

Permalink
add new project , and fix some style bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniere-Mathieu committed Jul 19, 2023
1 parent e5b06fe commit c25e206
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 1 deletion.
Binary file added public/assets/side_project.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions public/assets/svg/side_project.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 9 additions & 1 deletion src/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,17 @@ export const projects: list[] = [
{
name: "Pronto",
path: `${import.meta.env.BASE_URL}/assets/pronto.png`,
link: "https://www.lepronto.fr",
link: "https://www.lepronto.net",
description:
"Le projet Pronto est un ERP destiné aux restaurateurs, que j'ai développé en collaboration avec une équipe en tant que développeur en alternance. Ce projet m'a permis d'acquérir des compétences solides en développement d'applications métier et en travail d'équipe pour répondre aux besoins des clients. Je suis fier de contribuer à cette initiative qui apporte une réelle valeur ajoutée au secteur de la restauration.",
alt: "logo de pronto",
},
{
name: "Side Project",
path: `${import.meta.env.BASE_URL}/assets/side_project.png`,
description:
"side project est un projet qui a pour objectif de rendre la mémorisation et le partage de side projet plus simple.Le projet est en cours de développement et est développé avec Svelte et Tauri.",
githubLink: "https://github.com/Daniere-Mathieu/side-project",
alt: "logo de side project",
},
];
1 change: 1 addition & 0 deletions src/styles/global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
}

body {
overflow-x: hidden;
margin: 0;
color: var(--font-color);
scroll-behavior: smooth;
Expand Down
4 changes: 4 additions & 0 deletions src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
margin-top: 50px;
}
&__experienceWrapper {
overflow: hidden;
display: grid;
width: 100%;
grid-gap: 20px;
Expand Down Expand Up @@ -101,6 +102,8 @@
&Image {
height: 100%;
max-height: 200px;
max-width: 200px;
object-fit: scale-down;
}
&Wrapper {
display: flex;
Expand Down Expand Up @@ -182,6 +185,7 @@
grid-template-columns: repeat(2, 1fr);
}
.main__projectWrapper {
margin: auto;
flex-direction: column;
}
}

0 comments on commit c25e206

Please sign in to comment.