Conversio.dk is a headless WordPress site that uses Next.js SSG to generate over 500 static pages.
Conversio.dk is the biggest site, measured by the number of static pages, that I’ve ever built. It’s fully statically generated using the generateStaticParams function in Next.js.
It wasn’t even planned for me to create the new Conversio website. However, after seeing this LinkedIn post, we realized the potential to leverage my expertise in Next.js and React to build the frontend and use WordPress as a headless CMS.
I was pretty excited about the opportunity to create such a large website, where I could learn a lot about the differences between building a web application and an actual static website. Since I’d primarily worked on web apps before, I didn’t fully understand what I was signing up for.
We wanted the site to be highly dynamic and allow our marketing team to assemble pages by using custom sections as building blocks. This approach enabled them to create as many pages as they needed.
My colleague used ACF (Advanced Custom Fields) to create the sections in the WordPress backend. We then used a plugin to query WordPress via GraphQL from the frontend.
Before this project, I hadn’t worked much with GraphQL—but that changed very quickly. Because every normal page could include any combination of sections, we had to create one massive GraphQL query specifying every section and parameter needed to construct the UI.
Early in the process, I realized the query would become unwieldy and difficult to read. That’s when I discovered GraphQL fragments, which work similarly to JavaScript objects in that they can be spread into other queries.
This approach allowed me to manage a query spanning over 1,100 lines while keeping it readable and manageable.
query PageQuery($id: ID!, $preview: Boolean = false) {page(id: $id, idType: DATABASE_ID, asPreview: $preview) {pageSections {sections {...HeroStats}}}}fragment HeroStats on PageSectionsSectionsHeroStatsLayout {anchorLinkheadingstatsHeadingstatsHighlightedHeadingthemeheroStats {fieldGroupNamenumbersubheading}}}
During the two months I worked intensely on this project, I learned a lot. These are my main takeaways:
In conclusion, I’m really happy and proud of the result. The site looks nearly identical to the original design and should scale well for future additions and improvements.
Last updated: February 3, 2025