34 lines
835 B
Markdown
34 lines
835 B
Markdown
---
|
|
title: "Hello World"
|
|
date: "2023-08-05"
|
|
excerpt: "Welcome to my minimalist blog built with Next.js and Markdown"
|
|
---
|
|
|
|
# Hello World!
|
|
|
|
Welcome to my minimalist blog built with Next.js and Markdown. This is a sample post to demonstrate how the blog works.
|
|
|
|
## Features
|
|
|
|
- **Markdown Support**: Write your posts in Markdown format
|
|
- **Automatic Sorting**: Newest posts appear at the top
|
|
- **Responsive Design**: Looks great on all devices
|
|
- **GitHub Dark Theme**: A sleek, modern look
|
|
- **Subtle Animations**: Enhances the user experience
|
|
|
|
## Code Example
|
|
|
|
\`\`\`javascript
|
|
function greeting() {
|
|
console.log("Hello, world!");
|
|
}
|
|
|
|
greeting();
|
|
\`\`\`
|
|
|
|
## Next Steps
|
|
|
|
Feel free to add more posts by creating new `.md` files in the `posts` directory. The blog will automatically update to include your new content.
|
|
|
|
Enjoy your new blog!
|