Skip to content

Commit

Permalink
feat: add my image in about section
Browse files Browse the repository at this point in the history
  • Loading branch information
AminDannak committed Nov 18, 2024
1 parent 3cf528b commit 180126f
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 12 deletions.
Binary file added amin.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 37 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
}

h2 {
color: #3498db;
color: #147cc0;
padding-bottom: 0.5rem;
margin-top: 0;
}
Expand Down Expand Up @@ -143,10 +143,30 @@
color: #333;
}

.about-image {
max-width: 12rem;
max-height: 12rem;
border-radius: 6rem;
object-fit: contain;
margin-right: 2rem;
}

.about {
display: flex;
flex-direction: row;
align-items: center;
}

@media (max-width: 768px) {
.contact-info {
flex-direction: column;
}
.about {
flex-direction: column;
}
.about-image {
margin-bottom: 2rem;
}
}
</style>
</head>
Expand Down Expand Up @@ -182,17 +202,22 @@ <h2 class="job">Mobile and Frontend Developer</h2>
</header>

<main class="container">
<section>
<h2>About Me</h2>
<p>
I'm a passionate Mobile and Frontend Developer with extensive experience in React, React Native, and Next.js.
I specialize in creating efficient, user-friendly applications and have a track record of optimizing performance
and reducing dependencies. With a background in both mobile and web development, I bring a versatile skill set
to every project.
</p>
<p>
(or at least that's what the AI who wrote this thinks about me 😉)
</p>
<section class="about">
<div>
<img src="./amin.jpeg" class="about-image"/>
</div>
<div>
<h2>About Me</h2>
<p>
I'm a passionate Mobile and Frontend Developer with extensive experience in React, React Native, and Next.js.
I specialize in creating efficient, user-friendly applications and have a track record of optimizing performance
and reducing dependencies. With a background in both mobile and web development, I bring a versatile skill set
to every project.
</p>
<p>
(or at least that's what the AI who wrote this thinks about me 😉)
</p>
</div>
</section>

<section>
Expand Down

0 comments on commit 180126f

Please sign in to comment.