SSR [server-side-rendered]
This page is server-side-rendered. The "Page generated on:" date also changes with every visit because the page data is refetched by calling `getServerSideProps` on the server-side.
Some of the effects of SSR:
- Long TTFB (when directly hitting an endpoint)
- Short TTFB (when navigating using the links on the page as SPA)
- Always up-to-date version of the data (SSR or CSR with re-hydration)
- No flickering caused by rendering dynamic data
Breaks SPA navigation SPA capable since NextJS v9.3+- Client-side SPA navigation is slower than `getInitialProps` because of extra round-trip.
This implementation uses getServerSideProps.
Page generated on: 11/21/2024, 6:36:38 AM