is there any way to pick params from the URL?
I'm trying to figure out how to recycle the same page component for multiple purposes.
Here's a detailed explanation for what I'm trying to do:
-> I have a game.astro page component which will display a game with a generic <iframe>. The src will be the only thing changing between games.
->When I click to a header button saying something like <a href="/game?url=https//www.example.com> I want to be able to pick that URL as a variable in game.astro so it will be able to display that specific game instead of the others.
Any ideas?
I couldn't find anything useful to my case in the documentation and Chat GPT is completely clueless sometimes