35 lines
643 B
Markdown
35 lines
643 B
Markdown
---
|
|
title: "Test-Post"
|
|
date: 2026-05-15
|
|
description: "This is Test Post"
|
|
category: "tech"
|
|
tags: ["test", "bun"]
|
|
pinned: false
|
|
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.
|
|
|