Iver Lindholm

Fotograf Kirsti Hovde

Portfolio website

Visit site

Fotograf Kirsti Hovde

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

calculator.ts
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()) // 18

Feature table

FeatureStatusNotes
Basic markdownAll implemented
Code blocksWith line numbers
TablesResponsive styling
ImagesRounded corners
Styled listsFull boxes with bullets

Bullet and numbered lists (styled boxes)

Unordered list:

  • First item
  • Second item
  • Third item

Ordered list:

  1. First step
  2. Second step
  3. Third step

Images in the body

Images in markdown get rounded corners automatically:

Photography portfolio screenshot

Blockquote

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

© 2025 Iver Lindholm. All rights reserved