Skip to content

Commit

Permalink
feat: add intro section in home
Browse files Browse the repository at this point in the history
  • Loading branch information
LaercioSR committed Aug 27, 2024
1 parent 1950216 commit a60f881
Show file tree
Hide file tree
Showing 11 changed files with 146 additions and 218 deletions.
File renamed without changes
14 changes: 14 additions & 0 deletions src/app/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/app/components/ButtonCustom/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

.global-button svg > path {
fill: var(--primary);
transition: all 0.3s ease-in-out;
}

.global-button:hover svg > path {
Expand Down
5 changes: 3 additions & 2 deletions src/app/components/BuyMeACoffee/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
justify-content: center;
align-items: center;
gap: 0.25rem;
transition: color 0.2s ease-in-out;
transition: all 0.3s ease-in-out;
width: 100%;
}

.buy_me_a_coffee-wrapper:hover {
Expand All @@ -26,5 +27,5 @@

.buy_me_a_coffee-wrapper svg path {
fill: var(--primary);
transition: fill 0.2s ease-in-out;
transition: all 0.3s ease-in-out;
}
2 changes: 1 addition & 1 deletion src/app/components/Header/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
justify-content: center;
align-items: center;
width: 100%;
background-color: var(--home);
}

.nav-wrapper {
Expand All @@ -23,7 +24,6 @@
display: flex;
justify-content: flex-start;
align-items: center;
width: 100%;
gap: 1rem;
}

Expand Down
54 changes: 45 additions & 9 deletions src/app/components/Typography/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,53 +1,89 @@
.headline1 {
font-size: 3rem;
font-size: 2.5rem;
font-weight: 700;
line-height: 120%;

@media (min-width: 768px) {
font-size: 3rem;
}
}

.headline2 {
font-size: 2.5rem;
font-size: 2rem;
font-weight: 700;
line-height: 120%;

@media (min-width: 768px) {
font-size: 2.5rem;
}
}

.headline3 {
font-size: 2rem;
font-size: 1.75rem;
font-weight: 700;
line-height: 120%;

@media (min-width: 768px) {
font-size: 2rem;
}
}

.headline4 {
font-size: 1.5rem;
font-size: 1.25rem;
font-weight: 700;
line-height: 120%;

@media (min-width: 768px) {
font-size: 1.5rem;
}
}

.body1 {
font-size: 1rem;
font-size: 0.875rem;
font-weight: 700;
line-height: 120%;

@media (min-width: 768px) {
font-size: 1rem;
}
}

.body2 {
font-size: 1rem;
font-size: 0.875rem;
font-weight: 400;
line-height: 120%;

@media (min-width: 768px) {
font-size: 1rem;
}
}

.body3 {
font-size: 0.875rem;
font-size: 0.75rem;
font-weight: 400;
line-height: 120%;

@media (min-width: 768px) {
font-size: 0.875rem;
}
}

.caption1 {
font-size: 0.75rem;
font-size: 0.5rem;
font-weight: 700;
line-height: 120%;

@media (min-width: 768px) {
font-size: 0.75rem;
}
}

.caption2 {
font-size: 0.75rem;
font-size: 0.5rem;
font-weight: 400;
line-height: 120%;

@media (min-width: 768px) {
font-size: 0.75rem;
}
}
3 changes: 3 additions & 0 deletions src/app/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"label": "Portuguese"
}
},
"profile": {
"role": "Software Engineer"
},
"components": {
"buyMeACoffee": {
"label": "Buy me a coffee"
Expand Down
3 changes: 3 additions & 0 deletions src/app/i18n/locales/pt.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
"label": "Português"
}
},
"profile": {
"role": "Desenvolvedor de Software"
},
"components": {
"buyMeACoffee": {
"label": "Buy me a coffee"
Expand Down
Loading

0 comments on commit a60f881

Please sign in to comment.