-
Hi, I just found this, it look so amazing. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 10 replies
-
I'm glad you like Blitz! Regarding Blitz vs WordPress, there are a few things to consider. WordPress is a content management system that allows you to build and host a website without requiring you to write code (thanks to the plugin system that lets you add various customization). While Blitz is a React framework. The most significant difference between React frameworks (Blitz, Next, Gatsby) and WordPress is that they have wholly separated the website’s content management system from the front end (the interface) of a website. In order to display content, you have to either fetch data from the backend (which is super easy with Blitz) or use a headless CMS solution. I believe that there are use cases that can be covered by both Blitz and WordPress, but in some cases, one of these tools might work better. If you are a blogger and only want a few pages on your site, and you don't want to write code, I'd say using WordPress may be a good idea. However, if you want to build a highly customizable website, have a fully-fledged backend and an easy access to a database, then Blitz can be something you're looking for. |
Beta Was this translation helpful? Give feedback.
I'm glad you like Blitz!
Regarding Blitz vs WordPress, there are a few things to consider. WordPress is a content management system that allows you to build and host a website without requiring you to write code (thanks to the plugin system that lets you add various customization). While Blitz is a React framework. The most significant difference between React frameworks (Blitz, Next, Gatsby) and WordPress is that they have wholly separated the website’s content management system from the front end (the interface) of a website. In order to display content, you have to either fetch data from the backend (which is super easy with Blitz) or use a headless CMS solution.
I believe that there a…