Help! How to Structure Data for My Dynamic Web Pages?

I need to create five dynamic pages with some shared content and some unique content. Should I create a collection type called “Pages” and add a new entry for each page, or should I create a single type and keep separate entries for each page?

This topic has been created from a Discord post (1263461595904741499) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

On your frontend are you trying to fetch everything in one request, or are you ok with multiple fetches?

Even if you are trying to do it in one request, you could make a custom controller that returns the data you need from the pages collection & your shared single types.

Thank you <@604068445499162664> , i am okay with multiple fetches for each page, but i just want to k now will it be better to use single type for individuals or can use collection types with multiple entries

I would use a collection for the pages, and put the shared content into single types personally

Okay, thank you <@604068445499162664>