35 lines
734 B
Markdown
35 lines
734 B
Markdown
---
|
|
title: 'Getting Started with Next.js 15'
|
|
description: 'Learn how to build modern web applications with Next.js 15 and TypeScript.'
|
|
date: '2025-01-07'
|
|
author: 'John Doe'
|
|
category: 'Tutorial'
|
|
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>
|
|
}
|
|
```
|
|
|
|
### Check out this article:
|
|
|
|
[Check this out](tech/articol-tehnic.md)
|
|
|
|
## Conclusion
|
|
|
|
Next.js 15 brings many improvements for building modern web applications.
|