I think this book is probably the single best resource I've seen on the topic: <a href="https://www.refactoringui.com/" rel="nofollow noreferrer">https://www.refactoringui.com/</a><p>It's a really easy-to-use format (one quick tip on each page, with clear examples).<p>It's from the people who made Tailwind, a CSS framework that's basically a reimagining of Bootcamp for the Javascript/component era.<p>Check out some of their templates: <a href="https://tailwindui.com/templates" rel="nofollow noreferrer">https://tailwindui.com/templates</a><p>These are lookalike "modern" designs that you can pay to use, or just draw inspiration from. Imitation == flattery and all that.<p>Along similar lines, check out the free Next.js templates: <a href="https://vercel.com/templates/next.js" rel="nofollow noreferrer">https://vercel.com/templates/next.js</a><p>If you want to build up from components instead, Tailwind offers a component library too: <a href="https://tailwindui.com/components" rel="nofollow noreferrer">https://tailwindui.com/components</a><p>For React, I prefer the astoundingly good MUI framework (amazing components with lots of customizability, a good enough default look, and great documentation): <a href="https://mui.com/" rel="nofollow noreferrer">https://mui.com/</a> If you end up going this route, using their Figma kit (<a href="https://mui.com/store/items/figma-react/" rel="nofollow noreferrer">https://mui.com/store/items/figma-react/</a>) plus the Refactoring UI book from above should allow you to whip up a pretty standard-looking, "pretty enough" design in very little time. And then implementing it using the actual MUI lib would just take a few days.<p>There's also Ant Design: <a href="https://ant.design/" rel="nofollow noreferrer">https://ant.design/</a><p>And Chakra UI: <a href="https://chakra-ui.com/" rel="nofollow noreferrer">https://chakra-ui.com/</a><p>-----------<p>For more theoretical stuff (i.e., less visual but still very valuable), the UX research group Nielsen Norman still has a treasure trove of valuable advice: <a href="https://www.nngroup.com/articles/top-ten-guidelines-for-homepage-usability/" rel="nofollow noreferrer">https://www.nngroup.com/articles/top-ten-guidelines-for-home...</a><p>You should know the basics of accessibility (beyond general usability, this alos means alt text, header levels, contrast ratios, readability, screen readers, keyboard navigation, special considerations for the hard of sight and hearing, etc.): <a href="https://www.w3.org/WAI/standards-guidelines/wcag/" rel="nofollow noreferrer">https://www.w3.org/WAI/standards-guidelines/wcag/</a> or at least use an easy checklist tool like Microsoft's WCAG analyzer: <a href="https://accessibilityinsights.io/" rel="nofollow noreferrer">https://accessibilityinsights.io/</a>