Files
lbfalvy.com/src/pages/about.astro
Bethlenfalvi, Lorinc (ext) 8bafec4821
All checks were successful
Upload via SSH / build (push) Successful in 1m4s
Updated footer and about
2026-01-06 10:24:09 +01:00

35 lines
1.2 KiB
Plaintext

---
import { Image } from "astro:assets";
import Main from "../layouts/Main.astro";
---
<Main title="About Me" description="Lawrence Bethlenfalvy, software engineer">
<div class="max-w-[80ch] m-5">
<Image
src="https://github.com/lbfalvy.png"
loading="eager"
alt="My face"
width="120"
height="120"
class="rounded-full h-30 float-right m-3 [shape-outside:ellipse()]"
/>
<p>
My name is Lawrence Bethlenfalvy, I make websites and web-based
applications primarily with React. I enjoy seeing the fruits of my labour,
which is why I do so much frontend development even though I'm not exactly
an artistic genius, as finest demonstrated by this website.
</p>
<p>
I like well-oiled infrastructure, and in an effort to construct it for my
own projects I've racked up a considerable amount of DevOps experience.
</p>
<p>
More recently I've been hard at work on my small conceptual language,
Orchid, which, like anything I do, tries to be unopinionated, minimalistic
in design, and robust in execution. Incremental progress is fundamentally
incompatible with the optimal, holistic approach I like, but when I have
something to report I do it here.
</p>
</div>
</Main>