🖼️ added support for links to blogposts and support image sizing from .md files

This commit is contained in:
RJ
2025-11-24 14:31:57 +02:00
parent a2bd055879
commit d55aded360
6 changed files with 85 additions and 42 deletions

View File

@@ -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.

View File

@@ -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
- ![Use of coolers](./cooler.jpg?w=400&h=300)
## Concluzie
Subdirectoarele funcționează perfect pentru organizarea conținutului!
You are reading the technical article that was linked from the example post.