Test Article
This is a test article to showcase the new markdown-based blog functionality. The blog supports frontmatter metadata including titles, dates, and descriptions.
Features
The blog includes the following features:
- Markdown rendering with react-markdown
- Frontmatter support for metadata
- Automatic date sorting (newest first)
- Clean URLs using the filename as slug
- Responsive design with Tailwind CSS
How it works
- Create a markdown file in
src/app/content/notes/ - Add frontmatter with title, date, and description
- Write your content in markdown
- The file name becomes the URL slug
Example frontmatter
---
title: "Your Article Title"
date: "2024-03-15"
description: "A brief description of your article."
---
That's it! Your article will automatically appear in the notes section and be accessible via its slug URL.