This commit is contained in:
2026-05-16 22:18:12 +08:00
parent 290296f076
commit 40e1259a92
8 changed files with 397 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
---
title: "Hello World"
date: 2026-05-13
description: "This is my first blog post, built with Bun + Astro."
category: "tech"
tags: ["blog", "astro", "bun"]
pinned: true
author: "ddmt"
---
## Welcome!!!
This is the first post on my new blog, built with an exciting modern stack:
- **Bun** as the JavaScript runtime
- **Astro** as the web framework
- **TailwindCSS** for styling
- **Shiki** for code highlighting
## Code Example
```typescript
import { defineConfig } from "astro/config";
export default defineConfig({
site: "https://example.com",
output: "static",
});
```
## What's Next
Stay tuned for more posts about web development, system design, and open source projects.