Building This Blog

WebdevDevelopment
An image of the Next.js and TailwindCSS logos

It is 2022, and before anything else you should have a personal website.

"What!? Why would I need that?" may be your reaction. "I have a Twitter, Instagram, a half-forgotten YouTube channel, and maybe a Vine somewhere (no, you don't)". With all this social media and engagement elsewhere, the little personal website seems overrated.

But I still find that the content I enjoy most comes from regular, small websites. Not the giant media aggregators, like Twitter and Reddit. And I've spent a very, very long time on Reddit.

One of the largest stories last year was the mass-exodus of writers from traditional media companies to Substack, a platform for paid newsletter subscriptions. I would argue that personal sites accomplish the exact same result. And that result is you want to have somewhere, online, where you aren't locked in to someone else's business model.

Plus, if you happen to be a developer, a personal website is a wonderful excuse to goof-off and practice the craft. ๐Ÿค“

ยงFramework: Next.js

When I set out to make this site, I had a couple of goals in mind. I wanted to it to be React-based, simple to add content to, and everything to be fast. Fortunately, the JAMstack was waiting for me.

After all, why generate a page literally everytime it's served? Instead you can do that just once, right at deploy-time, and pass the savings on to the consumer reader! The two frameworks I considered here were Gatsby and Next.js. Gatsby seemed to have the advantage of being ready right out-of-the-box, with a huge system of add-ons available and GraphQL underpinning everything.

Next.js was a bit different, only adding static generation in v9.3 and not really nailing things down until v10.0. Plug-ins also don't really exist in the same sense as Gatsby, it's more of a do-it-yourself with the typical gamut of npm packages.

I was more interested in having full control, and I didn't really like the idea of a weird data engine sitting beneath everything, out of sight, that I wasn't totally familiar with. The concept of getStaticProps in Next was more comfortable to me. AKA fetch your data here, then weave it into your content with props.

Another bonus of Next.js was the dead-simple file router. Here's what the directory structure of this website looks like:

โ”œโ”€โ”€ components/
โ”œโ”€โ”€ lib/
โ”œโ”€โ”€ pages/
โ”‚   โ”œโ”€โ”€ _app.js
โ”‚   โ”œโ”€โ”€ blog/
โ”‚   โ”‚   โ”œโ”€โ”€ post-1.mdx
โ”‚   โ”‚   โ”œโ”€โ”€ post-2.mdx
โ”‚   โ”‚   โ””โ”€โ”€ post-3.mdx
โ”‚   โ””โ”€โ”€ index.js
โ”œโ”€โ”€ public/
โ””โ”€โ”€ styles/

Want to add another page? Just drop a .js/.jsx/.mdx file anywhere in the pages directory and it will get generated. Simple as that. The website path mirrors the folder structure exactly. This allows me to customize the structure surrounding my content (the .mdx files, more on that later), and my blog posts separately.

If you'd like to read more about Next.js, I'd recommend this post and this post by Lee Robinson. Lee is the Head of Developer Relations at Vercel, and pretty much the ๐Ÿ when it comes to Next.js. I've learned a ton from his personal site's repo.

ยงStyling: Tailwind CSS

Ahh, website styling. Hello darkness my old friend...

To be honest, I've never really had a knack for design. I feel I can come up with decent designs, but it generally takes me longer than I'd like to admit. Hopefully you don't find the site's current styling too offensive!

Not to mention, I always found CSS pretty cumbersome. For example, here's what it takes to style a button using "proper" CSS classes:

<div class="container container--centered">
  <button class="btn btn--large btn--green">
    Click me!
  </button>
</div>
 
<style>
  .container {
    display: flex;
    border-width: 2px;
    padding: 1rem;
  }
  .container--centered: {
    justify-content: centered;
  }
  .btn {
    font-weight: 700;
    border-radius: 0.75rem;
  }
  .btn--green {
    color: white;
    background-color: #22C55E;
  }
  .btn--large {
    padding: 2rem;
  }
</style>

This is known as the Block, Element, Modifier (BEM) methodology for CSS, and it's the way I was taught to do things. Obviously, this takes a while to get started, since you have to write five (!) classes before you even see what things will look like. Then, if you're like me, you start the process of slowly tweaking things one-by-one to get your desired look.

Here's the same example using Tailwind CSS:

<div className="flex justify-center border-2 p-4">
  <button className="rounded-xl bg-green-500 p-8 font-bold text-white">
    Click me!
  </button>
</div>

To me, this is a no brainer. Not only is everything co-located in the same file, but all styles are scoped to the component by default. And when you are making reusable React components anyways, why not just have the styles embedded right on the structure?

The other huge benefit of Tailwind is it provides sane defaults for all the various CSS properties. These have been curated by people that design web UIs professionally. So, theoretically, I shouldn't be able to get into too much trouble.

That's not to say that you cannot customize things if you need. You can still define global styles and add your own properties like brand colors.

All in all, I really enjoy using Tailwind. And with their latest release of Just-in-Time mode, it fits even better with a static-first site. ๐Ÿ˜

ยงContent: MDX

When it comes to writing content online, it seems like Markdown has won. After all, how many people actually code the HTML for each page, laying out each heading and paragraph tag with care? So, obviously, we need a way to go from Markdown > HTML.

Another aspect that you might consider is "How easy is it to embed a custom component in my page?", say a fancy floating card to showcase a project or blog post. In React-land, that's very easy with JSX. Just import the component, and drop it in where necessary! You can probably see where this is going...

Markdown + JSX = MDX. All the goodness of Markdown, plus the flexibility of JSX, in one file.

A logo representing React
React
A logo representing Next.js
Next.js
A logo representing Tailwind
Tailwind

In order to insert the above badges, here's what my Markdown looks like:

import Badge from "../../components/Badge.jsx"
...
[Markdown + JSX = MDX](https://mdxjs.com/).  All the goodness of Markdown, plus the flexibility of JSX, in one file.
 
<div className="grid grid-cols-3">
  <Badge logo="React" />
  <Badge logo="Next.js" />
  <Badge logo="Tailwind" />
</div>
 
In order to insert the above badges, here's what my Markdown looks like:
...

Pretty seamless! And by using the next/mdx, all of my MDX files in the pages directory are automatically compiled for me. This works well for my static setup, but if you are in need of dynamic routes or server-side content, you might want to look at next-mdx-remote or mdx-bundler.

ยงSyntax Highlighting: Shiki

Part of getting the content right on this site is having proper syntax highlighting. The go-to these days is Prism.js, which generally gets included as a remark/rehype plugin.

I tried this out, and it works... buuuut I'm not a fan of the included color themes. In fact, there's only one theme I've ever used more than a day: Monokai Pro.

I love Monokai Pro so much that I ported it to my Xcode and terminal settings, just to be consistent everywhere.

Another thing I noticed with Prism was that the highlighting was ever-so-slightly inconsistent between what the site would show and what I saw in VSCode. Thankfully, I stumbled upon this article about Shiki by Miguel Piedrafita. Shiki, turns out, is the exact same highlighter that VSCode uses under the hood. That means that I could simply export any color theme in it's JSON format and voilร , perfectly colored code blocks!

I didn't follow Miguel's exact implementation, opting for rsclarke's rehype plugin instead. To be honest, I still am a bit fuzzy on remark/rehype, so this seems like a magic black-box solution with just a few lines of code.

ยงFonts: Public Sans & FiraCode

Yes, I really am going to talk about website fonts, briefly.

First, FiraCode. This one is easy, it's what I use in my editor. Even though I turn off ligatures, I still like the design choices more than other monospaced options.

The obvious choice for a webfont these days is Inter. Nothing against it, but it's a bit boring to see the same typeface on every single website. Plus, c'mon, how can you say no to a fancy g !?

My main content font is Public Sans. Pretty clean, comes in the variable format, and I think it's amusing that my font is made by the US government.

ยงInspiration

When building any website, it's impossible to not survey the landscape, to see what others in the space are doing. I am no different, and there were quite a few sites that I studied while making mine:

  • Lee Robinson, mentioned earlier, not only has a fantastic open source site, but also wrote extensively about using Next.js, MDX, and Tailwind. I learned a ton from checking out his code here
  • Tania Rascia, who wrote the first guide on React Hooks I went through. You can see her Gatsby-based site here
  • Paul Stamatiou, his site is one of the best looking I've seen
  • Brittany Chiang, the fade-in transitions on her site are fantastic
  • Marc Barrowclift, whose hover interactions on components are really top-notch

ยงFuture Changes

There are a lot of features that did not make it into my v1.0 release; things like an RSS feed, email newsletter, and webmentions all spring to mind.

When I started this project, I initially toyed with skipping React altogether in favor of Svelte. At the time though, Sapper had just been declared dead (with no obvious replacement). Since then, SvelteKit has been released and is nearing it's v1.0 release. Maybe next year! ๐Ÿ˜‰

Lastly, there have been some really stunning personal site revamps in the last year (a positive of being stuck inside). Sites like Brian Lovin's, or Rauno Freiberg's really turn things up to eleven. I would love to build UIs like that, someday.

If you would like to see exactly how I implemented any of the above, make sure to check out the source code on GitHub. And feel free to tweet any questions you have at me!


Related Post