Dear Students,
I call for your help. While there are NGOs doing their best, there are other individuals or small orgs running kitchens and errands for Covid patients.
Help me find them. I’ll first donate myself and then amplify their work on SM as well.
+
@DevEnforced If you are building a Landing page then for better SEO use server-side rendering.
If you are building a page that has a lot of user-interaction then go for client-side rendering.
Depending on the use case you can mix things up.
Using framework like Next.js you can do both😄.
Solution:
Hybrid Rendering- Rendering some parts of the website as Static HTML which the web crawler can read and understand what our website is about and the rest of the content can be rendered using Client Side rendering so that the user can have a dynamic experience.
Advantage: Less load on the server cause the client has to do the entire processing.
Disadvantages: Since the initial file has the bare minimum of HTML it can be difficult for the Search Engine Bots to make out what the website is actually about resulting in a bad SEO.
➕