Server-Side Rendering (SSR)

This page is server-side rendered for each request.

The content is dynamically generated on the server whenever a user visits this page. This ensures the content is always up-to-date.

Try refreshing the page multiple times - you'll see all values change!

Server Time (UTC)

2026-05-31T08:32:34.143Z

Server Time (Local)

05/31/2026, 04:32:34.143 AM EDT

Random Values

Number (0-100): 51

UUID: 7fa49c03-ace3-4aad-8da4-9222677b5887

Implementation Details

In Next.js with the App Router, SSR is implemented using Server Components. This page demonstrates true SSR behavior:

  • Every refresh generates new timestamps and values
  • No caching is involved - content is truly dynamic
  • Both UTC and local times show to demonstrate server-side rendering
  • Random values prove new server execution on each request

Compare this with the ISR example, where content is cached and only updates on revalidation!