Build with Next.js

The React framework for production. Everything you need to build modern web applications.

Why Next.js?

File-based Routing

Automatic routing based on file structure. No need to configure routes manually.

Hybrid Rendering

Choose between static generation, server-side rendering, or client-side rendering.

Performance Optimized

Automatic code splitting, prefetching, and image optimization out of the box.

pages/index.js
                    
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