forked from MastersAcademy/fe-react-2024
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
963a285
commit 95e8bca
Showing
5 changed files
with
67 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import aboutImg from '@/assets/about.png'; | ||
|
||
import AboutCSS from './about.module.css'; | ||
|
||
export const AboutComponent = () => ( | ||
<div className={AboutCSS.container}> | ||
<img className={AboutCSS.img} src={aboutImg} alt="AboutIMG" /> | ||
<div className={AboutCSS.text}> | ||
<h1 className={AboutCSS.title}>About me</h1> | ||
<p className={AboutCSS.description}> | ||
Hi! My name is Oleh, and I'm a Junior Frontend Developer. I am already familiar with main Web Technologies like React, | ||
HTML, CSS, JavaScript and Git version control system. <br /> <br /> | ||
This page was developed during the course ' | ||
<a href="https://www.mastersacademy.education/frontend-react-it">Intro to React</a>' from Masters Academy in 2024.{' '} | ||
<br /> <br /> | ||
This is a social project from MOCG company where I got an opportunity to work with Frontend mentors and to create my own | ||
small project for the portfolio. <br /> <br /> | ||
You can contact me via <a href="https://t.me/medushivskyi">Telegram</a> and check out my{' '} | ||
<a href="https://github.com/legogoUA">GitHub</a>. | ||
</p> | ||
</div> | ||
</div> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
.container { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0 auto; | ||
padding: 50px; | ||
} | ||
|
||
.img { | ||
width: 330px; | ||
height: 292px; | ||
border-radius: 30px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.title { | ||
font-size: 2em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.description { | ||
line-height: 1.5; | ||
width: 330px; | ||
} | ||
|
||
@media only screen and (min-width: 1280px) { | ||
|
||
.container { | ||
flex-direction: row-reverse; | ||
gap: 75px; | ||
} | ||
|
||
.img { | ||
width: 500px; | ||
height: 489px; | ||
margin-top: 70px; | ||
} | ||
|
||
.description { | ||
width: 575px; | ||
} | ||
} |