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

33
src/pages/index.astro Normal file
View file

@ -0,0 +1,33 @@
---
import Layout from '../layouts/Layout.astro';
---
<Layout title="Home | Terminal Blog">
<h1 class="post-title">~/home</h1>
<div class="post-content">
<p class="typewriter">A random grassblock do some some writing work.</p>
<p class="typewriter" style="margin-top: 1.5rem;">Welcome to my terminal blog. Navigate using the links above.</p>
<div style="margin-top: 2rem;">
<span class="command">ls -la</span>
<div style="margin-top: 0.5rem; margin-left: 1rem;">
<p>drwxr-xr-x 3 user group 96 Jun 8 15:42 .</p>
<p>drwxr-xr-x 15 user group 480 Jun 8 14:22 ..</p>
<p>-rw-r--r-- 1 user group 283 Jun 8 15:42 about.md</p>
<p>-rw-r--r-- 1 user group 148 Jun 8 15:40 projects.md</p>
<p>-rw-r--r-- 1 user group 892 Jun 8 15:35 notes.md</p>
</div>
</div>
<div style="margin-top: 2rem;">
<span class="command">cat about.md</span>
<div style="margin-top: 0.5rem; margin-left: 1rem;">
<p>
I'm a developer who enjoys minimalist design and terminal aesthetics.
This blog is a collection of my thoughts, projects, and experiments.
</p>
</div>
</div>
</div>
</Layout>