import Link from 'next/link' export default () => (

SSG Data Prefetch Fixtures

Non-dynamic route : this is a normal Next.js page that does not use dynamic routing.

Dynamic Route (one level) — Prerendered : this is a Dynamic Page with a single dynamic segment that{' '} was returned from getStaticPaths.
Dynamic Route (one level) — Not Prerendered : this is a Dynamic Page with a single dynamic segment that{' '} was not returned from getStaticPaths.

Multi Dynamic Route (two levels) — Prerendered : this is a Dynamic Page with two dynamic segments that{' '} were returned from getStaticPaths.
Multi Dynamic Route (two levels) — Not Prerendered : this is a Dynamic Page with two dynamic segments that{' '} were not returned from getStaticPaths.

Catch-All Route (one level) — Prerendered : this is a Catch-All Page with one segment that{' '} was returned from getStaticPaths.
Catch-All Route (one level) — Not Prerendered : this is a Catch-All Page with one segment that{' '} was not returned from getStaticPaths.
Catch-All Route (two levels) — Prerendered : this is a Catch-All Page with two segments that{' '} were returned from getStaticPaths.
Catch-All Route (two levels) — Not Prerendered : this is a Catch-All Page with two segments that{' '} were not returned from getStaticPaths.

)