12 lines
614 B
HTML
12 lines
614 B
HTML
<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>
|