πŸ‘€ Our most exciting product launch yet πŸš€ Join us May 8th for Sanity Connect

Personal Branding Site for Teenage Entrepreneur

By Thomas Z Lukoma

Like every good dad would do I designed a site for my 16 year old daughter to help launch her book and speaking business

About page with content and image in sanity under siteSettings type that she can update herself
Book page with image and description information hosted in Sanity siteSettings type
Event cards with each card represented as an event type in Sanity
Sale locations for book represented as purchaseLocation type in Sanity
Main studio view with singleton type for siteSettings
Events type section to support event cards on the site
Book locations section to manage 'where to buy' section on the site

About the project

Initially, when my 16-year-old daughter asked me to design a website to support her idea of starting a speaking business, it fell into the simple 'brochure site' category and I saw it as a good opportunity to practice creating a design system and then using it on a vanilla HTML/Javascript website with a css style sheet from scratch. I accomplished the initial version of the site without using any frameworks like React or CSS solutions like Tailwind and was quite proud of my accomplishment (especially the animations) - until she decided to publish a children's book!

Suddenly the site went from evergreen content that didn't need much updating to a full-blown marketing site with timely content that would need frequent updates. Although I am a full-time dad, unfortunately, I am not a full-time web developer available to make every change as she needs it. And with a vanilla HTML, css, javascript site, every content change is a code change, so I quickly realized it was time for Next JS and my favorite content management system - Sanity.

I had enjoyed my previous experience with this stack and knew that if I spent the initial effort to migrate the website over to Next JS and the content to Sanity, it would significantly simplify my work in the future - and would give her all the control she needed to manage her content self-service.

So I switched into 'React Mode' and decomposed the site into components, refactored some of my CSS, found the react npm modules that supported some of the integrations I had added to the site (e.g. eCommerce), and rebuilt the whole site. In parallel, I decomposed how content was going to evolve over time and came up with two types of content:

  • 'Site Settings' - this was all the 'singleton' type of information that only exists as one entity on the site, but would need updating over time. An example of this type of information is her bio on the 'About' page. There is only one bio on the site, but I wanted her to manage the content self-service.
  • Repeating 'widgets' - these were the types I needed to support content that would have multiple instances of the same kind of information over time. For example, she needed to display upcoming events, so I needed an event type of which she would create a new instance for each event. This type matched up well with the frontend mapping of an array to generate multiple instances of the same component with different content.

I then set up some GROQ queries to filter the data based on certain criteria like whether an event was planned vs. scheduled (only the scheduled ones show up on the site) and wrote some simple functions in React to conditionally show events based on their dates.

Once I was clear on my component structure and logic for the frontend, and my data design for the cms, I put it all together and deployed it on Netlify where I set up a webhook to rebuild every time content is updated. Now, each time there are simple changes to the site related to the content, it takes me less than a minute to make the updates, and they show up on the site almost immediately after the Netlify deployment - I don't even have to open up VSCode!

Contributor

Other projects by author

Black History Month Church Activities Micro-Site

A quickly spun-up marketing site for church activities related to Black History Month themes to help centralize all the information for the congregation.

Thomas Z Lukoma
Go to Black History Month Church Activities Micro-Site