portfolio/src/pages/About.jsx

83 lines
3.6 KiB
React
Raw Normal View History

2024-01-05 12:52:34 +01:00
import { useRecoilValue } from "recoil";
import Tags from "../components/Tags";
import { skillsAtom } from "../store";
2024-01-02 23:04:17 +01:00
function About() {
2024-01-05 12:52:34 +01:00
const skills = useRecoilValue(skillsAtom);
2024-09-25 13:34:57 +02:00
2024-01-02 23:04:17 +01:00
return (
<section className="relative" aria-labelledby="about-heading">
2024-10-14 14:53:11 +02:00
<div id="about" className=" absolute "></div>
2024-09-25 13:34:57 +02:00
<div className=" min-h-screen flex items-center">
<div>
<h2
id="about-heading"
className="mb-6 text-subTPhone md:text-subT font-headline"
>
2024-10-14 14:53:11 +02:00
About me<span className=" text-highlight">.</span>
2024-09-25 13:34:57 +02:00
</h2>
2024-10-14 14:53:11 +02:00
<div className="flex flex-col md:flex-row gap-6">
<article className="basis-6/12 text-base font-body">
2024-09-25 13:34:57 +02:00
<p>
"I'm a Stockholm-based developer passionate about building
2024-10-14 14:53:11 +02:00
innovative, secure digital experiences with a focus on both
frontend and backend technologies. With expertise in JavaScript,
React, TypeScript, and a keen eye for web design, I create
solutions that combine functionality with creativity. I use
Node.js for backend development and SQL for database management,
ensuring my applications are both robust and scalable. I also
have a deep passion for 3D design, which adds a unique,
immersive dimension to my work. I thrive in collaborative
environments that encourage continuous learning and value
creative problem-solving. Let's collaborate to push the
2024-10-14 14:53:11 +02:00
boundaries of digital innovation!"
2024-09-25 13:34:57 +02:00
{/* As a prospective Frontend Developer, I seek a challenging career
opportunity in the IT industry, where I can collaborate with a
dynamic team, continually learn, and foster innovation. My
dedication lies in transforming design concepts into
user-friendly experiences and achieving organizational goals
through creativity and teamwork. I aspire to engage in work that
allows the utilization of technical and creative skills to
contribute effectively to the growth of an organization. If you
think you've got an opening that I might like, let's connect 🔗 */}
</p>
2024-10-14 14:53:11 +02:00
</article>
<figure className="border">
2024-10-14 14:53:11 +02:00
<img
className="rounded-3xl"
src="/public/img/ProfileMe.jpg"
alt="Mariia Shabelnik's profile photo"
2024-10-14 14:53:11 +02:00
/>
</figure>
<aside className="basis-1/3" aria-labelledby="skills-heading">
<h2 id="skills-heading" className="sr-only">
Skills and Technologies
</h2>
<section aria-labelledby="languages-heading">
<h3 id="languages-heading" className="mb-2 text-subTMini">
Languages:
</h3>
<Tags listOfTags={skills.languages} />
</section>
<section aria-labelledby="frameworks-heading">
<h3 id="frameworks-heading" className="my-2 text-subTMini">
Frameworks:
</h3>
<Tags listOfTags={skills.frameworks} />
</section>
<section aria-labelledby="tools-heading">
<h3 id="tools-heading" className="my-2 text-subTMini">
Tools I use:
</h3>
<Tags listOfTags={skills.tools} />
</section>
</aside>
2024-02-04 22:30:33 +01:00
</div>
2024-01-05 12:52:34 +01:00
</div>
</div>
2024-10-14 14:53:11 +02:00
</section>
2024-01-02 23:04:17 +01:00
);
}
export default About;