1. This[0] is what I mean by JAMStack. 2. "SPA" refers to single-page-app. 3. "SSR" refers to server-side-rendering.
[0] http://jamstack.wtf
One of the main differences between JAMStack and SPAs with SSR (Single-page applications with server-side rendering) is that JAMStack sites are pre-rendered rather than rendered on the fly by servers. This means that they can't use any dynamic content on the page—everything must be done when the page is pre-rendered. This makes them much faster since they don't have to make requests to servers in order to render pages after they're loaded in the browser.
That doesn't mean you can't use dynamic content on your site, though! You just need to pull it in after your app loads using APIs. That way you get the best of both worlds: a fast-loading site that pulls in dynamic data when it needs to through APIs.