Welcome to Hey Lazarus
Published on January 1, 2024
By Hey Lazarus Team
Welcome to Your New Blog!
Congratulations on setting up Hey Lazarus! This is your first blog post, and it's written in MDX, which means you can use both Markdown and React components.
What's MDX?
MDX is a powerful format that lets you write JSX directly in your Markdown documents. This means you can:
- Use all the familiar Markdown syntax
- Add interactive React components
- Create rich, dynamic content
Getting Started
Here are some things you can do right away:
1. Edit this post
This post is located at content/blog/welcome.mdx
. Open it up and make it your own!
2. Create new posts
Add new .mdx
files to the content/blog
directory. Each post should have frontmatter like this:
---
title: Your Post Title
date: 2024-01-01
excerpt: A brief description
author: Your Name
---
3. Add pages
Create static pages by adding .mdx
files to the content/pages
directory.
Markdown Features
You can use all the standard Markdown features:
- Bold text
- Italic text
Inline code
- Links
Lists
- Unordered lists
- Work great
- For organizing ideas
- Ordered lists
- Are also supported
- And numbered automatically
Blockquotes
This is a blockquote. Use it to highlight important information or quotes from other sources.
Code Blocks
// You can include code blocks with syntax highlighting
function greet(name) {
return `Hello, ${name}!`;
}
console.log(greet('World'));
What's Next?
Now that you have your blog set up, here are some ideas for next steps:
- Customize the design and colors in your Tailwind CSS configuration
- Add more pages like "Contact" or "Projects"
- Set up analytics to track your visitors
- Add comments using a service like Disqus or Utterances
- Deploy to Vercel, Netlify, or your preferred hosting platform
Happy blogging! 🎉