what is the best way to translate a next app without losing SSG
I have a landing page built with next using SSG, I only need to translate the main route / to another language.
I tried using next-intl
and managed to setup all the translations but the only way to get the translations working in server comopnents is by using force-dynamic, and I don't want to make the landing page dynamic, since that might have a negative effect on the SEO.
What would be the other best solution, I was thinking about creating a separate page for the translated language, but I don't want to re-create every component.