-
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
Showing
2 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
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
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,28 +1,28 @@ | ||
const About: any = () => { | ||
return ( | ||
<div | ||
id="about" | ||
className="flex flex-col gap-4 text-lg lg:p-6 mb-16 md:mb-20 hover_border" | ||
> | ||
<p> | ||
{/* // output: "export", | ||
// images: { unoptimized: true }, */} | ||
I have experience developing web applications, from simple landing pages | ||
to progressive web applications. I strive to create software that not | ||
only functions efficiently under the hood, but also provides intuitive, | ||
pixel-perfect user experiences. | ||
</p> | ||
<p> | ||
I love learning new and better ways to create seamless user experiences | ||
with clean, efficient and scalable code. I consider work an ongoing | ||
education, and I am always looking for opportunities to work with those | ||
who are willing to share their knowledge as much as I want to learn. At | ||
the end of the day, my primary goal is to create something beautiful | ||
with people that bring out the best in me. | ||
</p> | ||
<p>At my free time I am out in the woods or swimming.</p> | ||
</div> | ||
); | ||
return ( | ||
<div | ||
id="about" | ||
className="flex flex-col gap-4 text-lg lg:p-6 mb-16 md:mb-20 hover_border" | ||
> | ||
<p> | ||
I have experience developing web applications, from simple | ||
landing pages to progressive web applications. I strive to | ||
create software that not only functions efficiently under the | ||
hood, but also provides intuitive, pixel-perfect user | ||
experiences. | ||
</p> | ||
<p> | ||
I love learning new and better ways to create seamless user | ||
experiences with clean, efficient and scalable code. I consider | ||
work an ongoing education, and I am always looking for | ||
opportunities to work with those who are willing to share their | ||
knowledge as much as I want to learn. At the end of the day, my | ||
primary goal is to create something beautiful with people that | ||
bring out the best in me. | ||
</p> | ||
<p>At my free time I am out in the woods or swimming.</p> | ||
</div> | ||
); | ||
}; | ||
|
||
export default About; |