DEV Community

Discussion on: 🤔 How should I build my Frontend for a huge project?

Collapse
 
moboudra profile image
Mo Boudra • Edited

I agree with the Next.js / TailwindCSS suggestion, I see that your page has a lot of static content so you'll benefit from having some kind of Server Side Rendering with the ability to have some dynamic stuff like forms. TailwindCSS really speeds up styling once you get the hang of it, but if it's too intimidating you can use a more traditional CSS framework like Bulma or Bootstrap or even use a pre-built template.

Having said that, you can never go wrong with plain HTML and CSS.

Good luck with your project!