Startup

https://nextjs.org/docs/api-reference/create-next-app

bunx create-next-app@latest

_app.tsx

Top level component

Static site generation (SSG)

https://nextjs.org/docs/pages/building-your-application/deploying/static-exports#configuration

** what is .next

** what is Component _app.tsx

** getStaticPaths?

** getStatisProps

// next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
  output: 'export',
  images: {
    unoptimized: true,
  }
}

Sources