Static Site Generation (SSG)

This page demonstrates Static Site Generation (SSG), where the HTML is generated once at build time and then served as a fully static file. Because the output never changes unless you rebuild the project, SSG is ideal for content that doesn’t rely on live data or per‑request logic. It loads instantly, can be cached aggressively, and requires no server processing on each request.

Expected Behaviour

The list of features below is baked directly into the generated HTML. When you refresh the page, navigate away, or deploy the site, the content remains identical until the next build. No API calls or dynamic rendering occur at runtime.

How This Page Works

  • Next.js scans the file during the build process.
  • It generates a static HTML file containing the feature list.
  • The page is served instantly from disk or CDN.
  • No server‑side code runs when the user visits the page.
  • SSR
  • SSG
  • ISR
  • Streaming
  • Server Actions
  • API Routes
  • Dynamic Routes
  • Image Optimization