Add full project source

This commit is contained in:
Vladimír Duša
2026-03-11 09:11:08 +01:00
parent 51e3984077
commit 110e2dd471
35 changed files with 1422 additions and 19 deletions

23
src/pages/en/bio.astro Normal file
View File

@@ -0,0 +1,23 @@
---
import BaseLayout from '../../layouts/BaseLayout.astro';
const lang = 'en';
---
<BaseLayout title="Bio" description="Who is Vladimír Duša" lang={lang} alternateUrl="/cs/bio">
<div class="max-w-xl mx-auto px-8 py-16">
<h1 class="site-name text-lg mb-12">Vladimír&nbsp;Duša</h1>
<div class="text-gray-700 leading-relaxed space-y-5 text-sm">
<p>
I am [your description — e.g. developer, designer, educator...] with an interest in [topics you focus on].
On this website I share my thoughts, experiences and observations from areas that interest and excite me.
</p>
<p>
[Second paragraph — what shaped you, what you do professionally or personally, what drives you forward.]
</p>
<p>
[Third paragraph — how readers can contact you, what they will find here, or what makes this blog different.]
</p>
</div>
</div>
</BaseLayout>