I’m trying to decide the best approach for handling data in my project and need some advice. Which method would be better:
Use index.astro to pull data from JSON, then pass that data into props, and finally provide the prop data to the component like this: <Page content={JsonDataForPage1} />
or
Pull the data directly on the page and then render it?
So pull the json again on the page and select the tag.