The React framework for production. Everything you need to build modern web applications.
Automatic routing based on file structure. No need to configure routes manually.
Choose between static generation, server-side rendering, or client-side rendering.
Automatic code splitting, prefetching, and image optimization out of the box.
function HomePage() {
return (
<div className="container">
<h1 className="title">Welcome to Next.js!</h1>
<p className="description">
Get started by editing{' '}
<code className="code">pages/index.js</code>
</p>
</div>
)
}
export default HomePage