🖼️ added support for links to blogposts and support image sizing from .md files
This commit is contained in:
@@ -25,6 +25,10 @@ export default function Page() {
|
||||
}
|
||||
```
|
||||
|
||||
### Check out this article:
|
||||
|
||||
[Check this out](tech/articol-tehnic.md)
|
||||
|
||||
## Conclusion
|
||||
|
||||
Next.js 15 brings many improvements for building modern web applications.
|
||||
|
||||
@@ -1,45 +1,16 @@
|
||||
---
|
||||
title: 'Articol Tehnic din Subdirector'
|
||||
description: 'Test pentru subdirectoare și organizare ierarhică'
|
||||
title: 'Technical Article'
|
||||
description: 'A technical article to test internal links'
|
||||
date: '2025-01-10'
|
||||
author: 'Tech Writer'
|
||||
category: 'Tehnologie'
|
||||
tags: ['nextjs', 'react', 'typescript']
|
||||
draft: false
|
||||
author: 'John Doe'
|
||||
category: 'Tech'
|
||||
tags: ['tech', 'test']
|
||||
---
|
||||
|
||||
# Articol Tehnic
|
||||
# Technical Article
|
||||
|
||||
Acesta este un articol stocat într-un subdirector pentru a testa funcționalitatea de organizare ierarhică.
|
||||
This is a test article for internal blog post linking.
|
||||
|
||||
## Next.js și React
|
||||
## Content
|
||||
|
||||
Next.js este un framework React puternic care oferă:
|
||||
|
||||
- Server-side rendering (SSR)
|
||||
- Static site generation (SSG)
|
||||
- API routes
|
||||
- File-based routing
|
||||
|
||||
## Exemplu de cod TypeScript
|
||||
|
||||
```typescript
|
||||
interface User {
|
||||
id: number
|
||||
name: string
|
||||
email: string
|
||||
}
|
||||
|
||||
async function fetchUser(id: number): Promise<User> {
|
||||
const response = await fetch(`/api/users/${id}`)
|
||||
return response.json()
|
||||
}
|
||||
```
|
||||
|
||||
### Use of coolers
|
||||
|
||||
- 
|
||||
|
||||
## Concluzie
|
||||
|
||||
Subdirectoarele funcționează perfect pentru organizarea conținutului!
|
||||
You are reading the technical article that was linked from the example post.
|
||||
|
||||
Reference in New Issue
Block a user