Welcome to My Portfolio
An example markdown page showing how to add content
Getting Started
This is an example page to demonstrate how the markdown system works. You can add any markdown files to the pages/ directory and they will automatically appear in your portfolio.
Features
- Automatic Page Generation: Just drop markdown files in the pages directory
- Frontmatter Support: Add metadata like title, description, and date
- Markdown Formatting: Full support for all markdown features
Code Examples
Here's some inline code: const greeting = "Hello, World!"
And here's a code block:
function fibonacci(n) {
if (n <= 1) return n
return fibonacci(n - 1) + fibonacci(n - 2)
}
Lists
You can create both ordered and unordered lists:
- First item
- Second item
- Third item
- Bullet point one
- Bullet point two
- Bullet point three
Blockquotes
"The best way to predict the future is to invent it."
- Alan Kay
Next Steps
Feel free to edit this file or create new markdown files in the pages/ directory to add your own content!