March 30, 2025
The goal of this project is to use AI tools to slice web mockups into React components. Ideally, I want to take a design and automatically split it into pieces that can be imported into React, and ultimately used within an Astro environment. For straightforward pages, after rigorous testing, Iāve found plain React with CSS Modules provides the cleanest results so far. However, when it comes to interactive elements, Iām still testing various libraries and exploring how AI can incorporate these effectively.
Ideally, this approach would integrate smoothly with Astro, as I believe Astro offers the fastest possible load times thanks to its island architecture. Yet, this choice limits the libraries available, as many require React Context (Mantine), or use CSS-in-JS approaches (Material UI), which donāt render correctly in Astro, and are problematic even in Next.js for server rendering. Furthermore, many libraries rely heavily on Tailwind, which, despite being well-supported in Astro, uses class names I find harder to edit compared to CSS Modules.
Tailwind based libraries work well with AI, and Astro. Itās really me, as a seasoned developer, I would prefer to use CSS directly. If I was just starting, I probably would end up using tailwind. CSS is a language all of itās own, that is improving quickly. I fear that relying on Tailwind would create an added burden.
From a developer standpoint, CSS-in-JS (Chakra UI, Material UI, and now ParkUI, styled) are a wonderful experience. When dealing with an established code base, it streamlines the development process. However, even when server-side rendering (SSR) and hydration are functioning (can be tricky to set this up), the downside is significantly larger and potentially harder to read JSX files. One could argue, that keeping everything together, can make it easier to understand. But, when there is logic and layout together, it can become exhausting to read through. Having better separation of concernsāsuch as CSS Modulesāwould be preferable, or at least worth exploring further.
Chakra UI has a cousin library, ParkUI, which works well. Its atomic design approach is excellent, and components are very intuitive to use. The primary downside is that AI tools currently have limited support for it. Component imports are often fragile, since you āinstallā them, and Iāve seen them frequently breaking initially and requiring manual tweaking.
CSS Modules, CSS-in-JS, and Tailwind all suffer a similar irritation when trying to debug some part of the site you havenāt been in awhile. In the old days you would trace the class name to the component. Now, even that is not possible, you need a whole new tool, React Developer tools to work best, and the selection of things is not as smooth as the built in one for the browser. That gives a huge advantage for traditional class names, or scoped class names.
The best experience Iāve had was with plain CSS using Chrome DevTools linked to a workspace, where CSS edits directly updated files on disk. This workflow is excellent and something Iād like to achieve again. However, plain CSS quickly encounters issues with class-name conflicts, making it unsustainable as a long-term strategy. The way around this is scoped class classnames. AI struggles with this. To address this, Iāve requested āScoped CSS,ā where the outer div has a class name, and inner divs use scoped class names relative to that outer div. This approach improves editing significantly, but the AI tools need additional training to effectively handle it.
I really love this library. It is hands down the coolest new tech. But I wasnāt able to get it working well in my flow.
I really wanted to get ParkUI to work, as I am very familiar with Chakra. I love the concept of PandaCSS, how it boils the css down to only things being used. Still atomic, but writen as simple CSS in the component. so I ended up trying it out on Next.js. I was able to get the basic stuff working, but, AI was not good at using the components properly in the mockup. And, in the end, it didnāt save me time, but made it harder.
This one is bloated, and kind of old school, but, it just works, and it will be what I use going forward.
In conclusion, while AI tools are making strides in converting designs into code, there are still challenges to overcome for utilizing working components. The choice of libraries and frameworks can significantly impact the development experience, and finding the right balance between ease of use and performance is crucial.
Considering how quickly things are changing, I would not be surprised if the landscape shifts dramatically in the next few months. For now, Iām focusing on plain React with CSS Modules for straightforward pages, while using AntD for complex interactive elements. The goal is to find a solution that integrates seamlessly with Astro and provides an optimal user experience.