Fotograf Kirsti Hovde
Portfolio website

Custom portfolio site for photographer Kirsti Hovde. Built with a focus on showcasing her work with a clean, image-led layout. You can use bold and italic text, plus links.
Overview
The site features a minimal, image-led design that puts Kirsti’s photography front and center.
Tech Stack
- SvelteKit
- Tailwind CSS
- Deployed on Railway
Code with line numbers and filename
console.log('Hello, world!')
function add(a: number, b: number): number {
return a + b
}
class Calculator {
constructor(private initialValue: number = 0) {}
add(value: number): this {
this.initialValue += value
return this
}
getValue(): number {
return this.initialValue
}
}
const calc = new Calculator(10).add(5).add(3)
console.log(calc.getValue()) // 18Feature table
| Feature | Status | Notes |
|---|---|---|
| Basic markdown | ✅ | All implemented |
| Code blocks | ✅ | With line numbers |
| Tables | ✅ | Responsive styling |
| Images | ✅ | Rounded corners |
| Styled lists | ✅ | Full boxes with bullets |
Bullet and numbered lists (styled boxes)
Unordered list:
- First item
- Second item
- Third item
Ordered list:
- First step
- Second step
- Third step
Images in the body
Images in markdown get rounded corners automatically:

Blockquote
This is a blockquote. Useful for pull quotes or callouts.