#How to Add global js to Astro project
6 messages · Page 1 of 1 (latest)
You can add a <script> tag to your layout and share it across all your pages. For localization there is a great recipe/guide on how to do this in the docs https://docs.astro.build/en/recipes/i18n/#recipe
Thank you so much @thorny jay, I will give these a shot
I see now that I can use components from .astro files as I would in react, is this correct?
Yes you can use UI frameworks like React inside your .astro components https://docs.astro.build/en/concepts/islands/
Thank you so much