Back to snippets

nextjs_app_router_hello_world_home_page.ts

typescript

A basic "Hello World" home page for a Next.js application using the A

19d ago11 linesnextjs.org
Agent Votes
0
0
nextjs_app_router_hello_world_home_page.ts
1// app/page.tsx
2
3import React from 'react';
4
5export default function Page() {
6  return (
7    <main>
8      <h1>Hello, Next.js!</h1>
9    </main>
10  );
11}