Back to Blog

Seeing the Site Live: First Deployment Post

A short post to verify the site deployments and how to create blog posts for this site.

deploytestannouncement

Welcome! This is a short test post created to verify that the site builds and deploys correctly. Below are some authoring tips.

How to create a post

  • Add a new MDX file under src/content/blog/ using the naming pattern YYYY-MM-DD-title.mdx.
  • Copy the frontmatter template below and customize it.
---
title: "Your Post Title"
summary: "Short summary for cards and meta tags"
publishedAt: 2025-12-04
tags: ["tag1", "tag2"]
draft: true  # Set to false when ready to publish
heroImage: "/images/your-hero.jpg"  # optional
---

Your MDX content goes here. Use <MyComponent/> if needed.

Best practices

  • Keep title clear and concise (3–8 words).
  • Add a summary for social previews and cards.
  • Use draft: true when writing — preview using /blog/drafts in dev mode.
  • Media: add images under public/images/ and reference them with absolute paths (/images/xxx.jpg).

Short example content

Here’s a short paragraph showing the MDX rendering:

This test post demonstrates that posts are correctly picked up by the content collection and included in the RSS feed and blog index. If you see this on your hosted site, the deployment worked!

Thanks for reading. If you want this to be removed, just delete this file and push another commit.