initial commit

This commit is contained in:
grassblock 2025-05-01 16:53:18 +08:00
commit 61511ed28c
28 changed files with 5210 additions and 0 deletions

30
src/pages/lab.astro Normal file
View file

@ -0,0 +1,30 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="Lab | Terminal Blog" path="~/grassblock/micr0blog/lab">
<h1 class="post-title">~/lab</h1>
<div class="post-content">
<p class="typewriter">This is where experiments happen.</p>
<div style="margin-top: 2rem;">
<span class="command">ls -la experiments/</span>
<div style="margin-top: 1rem; margin-left: 1rem;">
<p><a href="/lab/experiment-1">Terminal Text Effects</a></p>
<p><a href="/lab/experiment-2">ASCII Art Generator</a></p>
<p><a href="/lab/experiment-3">Command Line Games</a></p>
</div>
</div>
<div style="margin-top: 2rem;">
<span class="command">cat README.md</span>
<div style="margin-top: 0.5rem; margin-left: 1rem;">
<p>
The lab is a space for experimental projects and ideas.
Feel free to explore, but be cautious as things might break.
</p>
</div>
</div>
</div>
</Layout>