Skip to content

Commit

Permalink
perf: more changes
Browse files Browse the repository at this point in the history
Signed-off-by: mateonunez <mateonunez95@gmail.com>
  • Loading branch information
mateonunez committed Nov 25, 2024
1 parent 7f9cfc8 commit 9eea142
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 17 deletions.
10 changes: 5 additions & 5 deletions components/about/about.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import cn from 'classnames';

const goals = [
{ title: 'First Node.js contribution', progress: 100 },
{ title: 'Work fully remote', progress: 90 },
{ title: 'Work fully remote', progress: 100 },
{ title: 'Make my first public talk', progress: 50 },
{ title: 'Learn Rust as I know JavaScript', progress: 40 },
{ title: 'Make my first public talk', progress: 30 },
];

const About = ({ ...props }) => {
Expand Down Expand Up @@ -42,7 +42,7 @@ const About = ({ ...props }) => {
{/* Intro */}
<Fade direction="left" distance={150} delay={0.5} trigger={introRef}>
<div className={s.introInner} ref={introRef}>
<span>I&apos;m a Senior Developer based in Milan 🤌</span>
<span>I&apos;m a Software Engineer based in Milan 🤌</span>
</div>
</Fade>
{/* Profile */}
Expand All @@ -61,7 +61,7 @@ const About = ({ ...props }) => {
<div className={cn(s.profileQuote, 'text-right')}></div>
</div>
<div className="w-full">
<p className="text-center font-bold text-amber-500 text-md">@mateonunez</p>
<p className="font-bold text-center text-amber-500 text-md">@mateonunez</p>
</div>
</div>
</Fade>
Expand Down Expand Up @@ -106,7 +106,7 @@ const About = ({ ...props }) => {
<Link href="https://hlpy.co" passHref alt="hlpy" target="_blank" rel="noreferrer">
hlpy
</Link>{' '}
as a Senior Developer.
as a Software Engineer.
</span>
</div>
<div className={s.bio}>
Expand Down
13 changes: 4 additions & 9 deletions components/about/about.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
.root {
margin: auto 0 4rem;
display: flex;
flex-direction: column;
font-size: 14px;
min-height: calc(100vh);
}

.title {
Expand All @@ -14,7 +10,7 @@
}

.intro {
margin: 2rem auto 0 auto;
/* margin: 2rem auto 0 auto; */
width: 100%;
}

Expand All @@ -32,9 +28,9 @@
}

.profileContainer {
width: 80%;
margin: 1rem auto 1rem auto;
/* margin: 1rem auto 1rem auto; */
@apply rounded-lg shadow-lg;
padding: 2rem 0 2rem 0;
}

.profileInner {
Expand All @@ -48,8 +44,7 @@
}

.profileImage {
margin: 0 auto 1rem auto;
padding: 1rem 0 3rem 0;
margin: auto;
overflow: hidden;
@apply w-20 h-20 rounded-full shadow-lg;
}
Expand Down
2 changes: 1 addition & 1 deletion components/hero/hero.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function Hero({ article, ...props }) {
{/* Last Article */}
<div className={s.lastArticle}>
<Fade>
<h2 className="subtitle text-center">
<h2 className="text-center subtitle">
<Link href="/blog" title="Blog" aria-label="Blog" rel="canonical">
From the Blog
</Link>
Expand Down
2 changes: 1 addition & 1 deletion components/hero/hero.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
display: flex;
flex-direction: column;
font-size: 14px;
min-height: calc(100vh);
/* min-height: calc(100vh); */
}

.container {
Expand Down
2 changes: 1 addition & 1 deletion public/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"start_url": "/",
"name": "Mateo Nunez | ",
"short_name": "Mateo Nunez",
"description": "Mateo Nunez | Senior Developer",
"description": "Mateo Nunez | Software Engineer",
"icons": [
{
"src": "/icon-192x192.png",
Expand Down

0 comments on commit 9eea142

Please sign in to comment.