Back to Blog
Next.jsReactJavaScript
Getting Started with Next.js App Router
April 10, 2026 5 min read
What is the App Router?
The App Router uses the/app directory and introduces Server Components, Nested Layouts, and Streaming.
Getting Started
Create your first page inapp/page.tsx:
``tsx
export default function HomePage() {
return Hello, App Router!
;
}
``