Hello World
Welcome to your new blog! This is a sample post showing how easy it is to write content using markdown.
Writing in Markdown
Markdown makes it simple to format your posts. You can write bold text, italic text, and even links.
Code Blocks
function greet(name) {
return `Hello, ${name}!`;
}
Lists
Things you can do with this blog:
- Write posts in markdown
- Add images to your posts
- Toggle between light and dark themes
- Keep things simple and fast
Adding Images
You can add a hero image to your post by specifying it in the frontmatter. Images stored in src/assets/ are automatically optimized by Astro.
For inline images within your content, you can use standard markdown syntax or the Astro <Image /> component for additional control.
What’s Next?
Start writing your own posts by creating new .md files in src/content/blog/. Each post needs frontmatter with at least a title, description, and pubDate.
Happy blogging!