🪛 initial files

This commit is contained in:
RJ
2025-11-07 15:39:56 +02:00
parent 6d3fcfd47a
commit d29853c07d
12 changed files with 3816 additions and 0 deletions

29
content/blog/example.md Normal file
View File

@@ -0,0 +1,29 @@
---
title: "Getting Started with Next.js 15"
date: "2025-01-07"
excerpt: "Learn how to build modern web applications with Next.js 15 and TypeScript."
author: "John Doe"
tags: ["nextjs", "typescript", "tutorial"]
---
# Getting Started with Next.js 15
Welcome to this example blog post! This post demonstrates how markdown content is rendered.
## Features
- Server Components by default
- Improved performance
- Better TypeScript support
## Code Example
```typescript
export default function Page() {
return <h1>Hello, Next.js 15!</h1>
}
```
## Conclusion
Next.js 15 brings many improvements for building modern web applications.