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
95e8bca
commit 1f05e65
Showing
4 changed files
with
45 additions
and
34 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -1,23 +1,28 @@ | ||
import aboutImg from '@/assets/about.png'; | ||
import aboutImg from '../../assets/about .jpg'; | ||
|
||
import AboutCSS from './about.module.css'; | ||
|
||
export const AboutComponent = () => ( | ||
<div className={AboutCSS.container}> | ||
<div className={AboutCSS.about}> | ||
<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 className={AboutCSS.description}> | ||
<p> | ||
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. | ||
</p> | ||
<p> | ||
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. | ||
</p> | ||
<p> | ||
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> | ||
</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