Skip to content

Commit

Permalink
Cambia la fuente a Onest
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximoJSDev committed Feb 18, 2024
1 parent 819c2e0 commit d1fda79
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/components/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

const callback = (entries) => {
entries.forEach((entry) => {
console.log(entry);
if (entry.isIntersecting) {
navItems.forEach((item) => {
if (item.getAttribute("aria-label") == entry.target.id) {
Expand Down
3 changes: 2 additions & 1 deletion src/components/Projects.astro
Original file line number Diff line number Diff line change
Expand Up @@ -134,14 +134,15 @@ const PROJECTS = [
display: flex;
flex-direction: column;
max-width: 500px;
height: 100%;
}
h3 {
font-size: 28px;
color: var(--primaryColor);
margin-bottom: 4px;
}
p {
font-size: 22px;
font-size: 21px;
margin-bottom: 10px;
flex-grow: 1;
text-wrap: balance;
Expand Down
2 changes: 1 addition & 1 deletion src/components/SobreMi.astro
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
}
.sobre-mi__article p {
margin-bottom: 26px;
max-width: 673px;
max-width: 700px;
}
.sobre-mi__article strong {
color: var(--primaryColor);
Expand Down
4 changes: 2 additions & 2 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const { title } = Astro.props;
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;600;700&display=swap"
href="https://fonts.googleapis.com/css2?family=Onest:wght@400;600;700&display=swap"
rel="stylesheet"
/>
<ViewTransitions />
Expand All @@ -54,7 +54,7 @@ const { title } = Astro.props;
body {
background-color: #0c1423;
color: #fff;
font-family: "Roboto";
font-family: "Onest", sans-serif;
}
</style>
</body>
Expand Down
8 changes: 4 additions & 4 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import Slider from "@/components/Slider.astro";
import SobreMi from "@/components/SobreMi.astro";
---

<Layout title="Eduardo Maximiliano | Desarrollador Web & Diseñador UI/UX">
<Layout title="Maximiliano | Desarrollador Web & Diseñador UI/UX">
<Header />
<main>
<section id="inicio">
<article class="inicio__article">
<h1 class="inicio__title">Hola, soy Maximiliano</h1>
<h3 class="inicio__subtitle">Desarrollador Web Front-end</h3>
<h3 class="inicio__subtitle">Desarrollador Web Frontend</h3>
<p class="inicio__text">
Creativo, proactivo y entusiasta Desarrollador Web Front-end.
Creativo, proactivo y entusiasta Desarrollador Web Frontend.
Especializado en la implementacion del Diseño de interfaces y en la
experiencia de usuario ideal.
</p>
Expand Down Expand Up @@ -185,7 +185,7 @@ import SobreMi from "@/components/SobreMi.astro";
font-size: 22px;
}
#tecnologias .slide {
font-size: 15px;
font-size: 14px;
width: 80px;
}
#tecnologias .slide img {
Expand Down

0 comments on commit d1fda79

Please sign in to comment.