SetupApril 20, 2026·1 min read

Getting started with Resource Hub

Add your first guide or tool by creating an MDX file and pushing to Git. Vercel handles the rest.

Add a new resource in 60 seconds

Every page on this site is a single MDX file. To publish a new guide or tool:

  1. Create a file at content/guides/my-new-guide.mdx (or content/tools/...).
  2. Add frontmatter — title and description are required; everything else is optional.
  3. Write your content in Markdown or JSX.
  4. git push — Vercel deploys it automatically.

That's it. No CMS, no database, no admin panel.

Frontmatter reference

---
title: Your title here
description: One-line summary for cards, OG tags, and search.
category: Setup       # Auto-creates /category/setup
tags: [vercel, mdx]   # Auto-creates /tag/vercel, /tag/mdx
date: 2026-04-20
updated: 2026-04-25
author: Your Name
featured: true        # Surfaces on the homepage
draft: false          # If true, hidden in production
---

What happens automatically

When you push a new MDX file, the build pipeline:

  • Adds it to the section index (e.g. /guides)
  • Indexes it for fuzzy search
  • Creates pages for any new categories and tags
  • Includes it in sitemap.xml and feed.xml
  • Generates Open Graph tags, Twitter cards, and JSON-LD structured data

Branch previews

Push to any branch other than main and Vercel spins up a unique preview URL with its own HTTPS cert. Share it with collaborators before merging.