This commit is contained in:
Juraj Kubričan
2024-08-12 09:56:42 +02:00
commit 80d26daaf6
3 changed files with 48 additions and 0 deletions

11
blog.html Normal file
View File

@@ -0,0 +1,11 @@
<section>
<h2 class="text-2xl font-bold text-purple-400">Blog</h2>
<article class="mt-6">
<h3 class="text-xl font-semibold text-purple-300">Post 1</h3>
<p class="mt-2">This is the content of the first blog post. It's an introduction to some of the exciting projects I've been working on recently.</p>
</article>
<article class="mt-6">
<h3 class="text-xl font-semibold text-purple-300">Post 2</h3>
<p class="mt-2">This is the content of the second blog post. Here I share some tips and tricks on improving your web development workflow.</p>
</article>
</section>