diff --git a/src/components/doc/ExternalFeaturesSection.tsx b/src/components/doc/ExternalFeaturesSection.tsx index d7eaaa937..7acde710f 100644 --- a/src/components/doc/ExternalFeaturesSection.tsx +++ b/src/components/doc/ExternalFeaturesSection.tsx @@ -26,17 +26,16 @@ const ExternalFeaturesSection: React.FunctionComponent = (props): JSX.Ele

Backoffice/Admin site

- “Manage NRN content using NRN-Admin” + “Manage NRN content using Stacker” - You have the ability to update this demo dynamic content using NRN-Admin.
- It's basically an admin site (POC/experimental), for managing content, based on - react-admin, built with NRN. + You have the ability to update this demo dynamic content using Stacker.
+ TODO Stacker
- - + +
diff --git a/src/pages/[locale]/examples/native-features/example-with-ssg-and-revalidate.tsx b/src/pages/[locale]/examples/native-features/example-with-ssg-and-revalidate.tsx index 82d6233ce..e601854f2 100644 --- a/src/pages/[locale]/examples/native-features/example-with-ssg-and-revalidate.tsx +++ b/src/pages/[locale]/examples/native-features/example-with-ssg-and-revalidate.tsx @@ -98,7 +98,7 @@ const ProductsWithSSGPage: NextPage = (props): JSX.Element => { By using incremental static regeneration, this page is kept up-to-date automatically, based on how often users open the page.
Of course, a few users will see outdated information, but it's not really an issue here.

- If you use NRN Admin and update the products there,{' '} + If you use Stacker and update the products there,{' '} then when you refresh the page (once the delay of {regenerationDelay} seconds has passed) then the whole page will be statically regenerated.
And then, you'll have to refresh once again to see the new static version. diff --git a/src/pages/[locale]/examples/native-features/example-with-ssg.tsx b/src/pages/[locale]/examples/native-features/example-with-ssg.tsx index 97fe41f88..b3f913271 100644 --- a/src/pages/[locale]/examples/native-features/example-with-ssg.tsx +++ b/src/pages/[locale]/examples/native-features/example-with-ssg.tsx @@ -95,7 +95,7 @@ const ExampleWithSSGPage: NextPage = (props): JSX.Element => {
Each page refresh (either static or CSR) fetches the static bundle and displays products below.

- If you use NRN Admin and update the products there,{' '} + If you use Stacker and update the products there,{' '} then the products below will NOT be updated, because each page refresh will still fetch the static content, which was generated at build time.
Therefore, changes there won't be reflected here. (but they'll be reflected on the SSR version though)
diff --git a/src/pages/[locale]/examples/native-features/example-with-ssr.tsx b/src/pages/[locale]/examples/native-features/example-with-ssr.tsx index 8b272cd68..01e2d09f4 100644 --- a/src/pages/[locale]/examples/native-features/example-with-ssr.tsx +++ b/src/pages/[locale]/examples/native-features/example-with-ssr.tsx @@ -74,7 +74,7 @@ const ProductsWithSSRPage: NextPage = (props): JSX.Element => {
Each page refresh (either SSR or CSR) queries the Airtable API and displays products below.

- If you use NRN Admin and update the products there,{' '} + If you use Stacker and update the products there,{' '} then the products below will be updated immediately, because each page refresh will fetch the latest content.