Remix.run Logo
cjk 10 hours ago

Depends on your goal.

If you’re not interested in hand-maintaining the code of the website(s), and you just want a nice GUI for publishing pages/posts/etc., then I’d say use some hosted platform like Squarespace.

For actually learning how to build websites, start with something more low-level and barebones like a static site generator (Jekyll, Hugo, Gatsby, etc.), or even plain GitHub Pages without a static site generator for the most “manual” experience.

In neither of those cases would I consider WordPress.

anitroves 10 hours ago | parent [-]

What if i say my start was from wordpress so what shoyld I use then lets say I know basics of html and other built some php functions but now I wanna code without using AI

cjk 9 hours ago | parent [-]

In that case, I would consider a lightweight static site generator.

It sounds like you're fairly new to programming, so I would suggest a static site generator that is easy to install and use.

Zola[1] is less well-known, but it's easy to install and fast. I tend to use Hugo[2] the most these days, which is fast and has solid documentation, but its template syntax is really annoying compared to Zola.

[1]: https://www.getzola.org/documentation/getting-started/overvi...

[2]: https://gohugo.io/getting-started/quick-start/