44 lines
1.5 KiB
Markdown
44 lines
1.5 KiB
Markdown
<script>
|
|
import Avif from "./profile.avif";
|
|
import Jpeg from "./profile.avif?format=jpeg";
|
|
import WebP from "./profile.avif?format=webp";
|
|
</script>
|
|
|
|
<picture>
|
|
<source srcset={Avif} type="image/avif">
|
|
<source srcset={WebP} type="image/webp">
|
|
<img src={Jpeg} class="circle" alt="Kaan, wearing a beanie, in front of some shrubbery." style="max-width:20rem">
|
|
</picture>
|
|
|
|
<h1>Kaan Barmore-Genç</h1>
|
|
|
|
Hi! I'm a software engineer with a diverse technical toolkit: Linux enthusiast,
|
|
polyglot programmer, home chef, and (when time allows) an amateur cyclist.
|
|
Currently, I'm building microservices and polished UIs at [Tailwind](https://tailwindapp.com) alongside a
|
|
fantastic team.
|
|
|
|
My focus is building seamless web applications, and I excel in
|
|
both front-end and back-end development. My experience includes TypeScript,
|
|
React, SvelteKit, TailwindCSS, Rust, Docker, SQL, and AWS technologies
|
|
(DynamoDB, Lambda, EventBridge, and more).
|
|
|
|
I'm an active contributor to the open-source world: check out
|
|
my [Github profile](https://github.com/SeriousBug)! For a closer look at my work,
|
|
visit my [portfolio](/portfolio) where I
|
|
highlight my favorite projects. I sometimes write about the tools
|
|
I use or challenges I've solved on my [blog](/posts). I'm always open to feedback, reach out to me through my socials linked below.
|
|
|
|
<style>
|
|
picture {
|
|
max-width: 320px;
|
|
max-height: 320px;
|
|
margin: 0 auto;
|
|
clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 25% 100%);
|
|
}
|
|
|
|
h1 {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
</style>
|