Full Page

Bergen, Norway

Kvist Arkitekter

We design buildings that belong to their landscape. Every commission begins with the site — its weather, its soil, its silence. The architecture follows. Kvist Arkitekter is a ten-person studio in Bergen, Norway. We work primarily in timber and stone, materials that age honestly. Our projects range from private residences to public libraries, connected by a belief that good architecture requires no explanation.

Selected Projects

Hardanger Fjord Library — Public, 2024, Voss Residence — Private, 2023, Lofoten Artists' Retreat — Cultural, 2022, Bergen Maritime Pavilion — Public, 2021, Tromsø Housing Collective — Residential, 2020

Awards

Nordic Architecture Prize 2024, Wallpaper* Design Award — Best Public Building, ArchDaily Building of the Year (shortlist), Norwegian Wood Award 2022

Architecture Practice

Clean architectural practice page with philosophy, selected projects, and awards.

by DesignGenerate 0 stars 1 renders 0 forks

Schema

FieldType
practice_name string
philosophy text
projects list<string>
awards list<string>
contact_email email
location string

Apply Values

POST JSON to the API endpoint:

POST /api/templates/architecture-practice/apply
Content-Type: application/json

{
  "practice_name": "Kvist Arkitekter",
  "philosophy": "We design buildings that belong to their landscape. Every commission begins with the site — its weather, its soil, its silence. The architecture follows.\n\nKvist Arkitekter is a ten-person studio in Bergen, Norway. We work primarily in timber and stone, materials that age honestly. Our projects range from private residences to public libraries, connected by a belief that good architecture requires no explanation.",
  "projects": [
    "Hardanger Fjord Library — Public, 2024",
    "Voss Residence — Private, 2023",
    "Lofoten Artists' Retreat — Cultural, 2022",
    "Bergen Maritime Pavilion — Public, 2021",
    "Tromsø Housing Collective — Residential, 2020"
  ],
  "awards": [
    "Nordic Architecture Prize 2024",
    "Wallpaper* Design Award — Best Public Building",
    "ArchDaily Building of the Year (shortlist)",
    "Norwegian Wood Award 2022"
  ],
  "contact_email": "[email protected]",
  "location": "Bergen, Norway"
}

AI Prompt

Copy this prompt to generate a compatible template with any LLM:

You are an expert frontend designer.
Create a beautiful, modern HTML template for "Architecture Practice" that strictly follows the constraints and schema below.

## Constraints
- Style everything using inline style="" attributes only (no external CSS, no <link>, no <style> tags)
- Do NOT use: <script>, <iframe>, <form>, <input>, <textarea>, <button>, <select>, <object>, <embed>, <details>, <dialog>
- Place data placeholders using this syntax: {{practice_name:string}}, {{philosophy:text}}, {{projects:list<string>}}
- The template must be a single HTML fragment (no <html>, <head>, or <body> tags)
- Use system fonts: font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif (or Georgia, serif for editorial)

## JSON Schema
```json
{
  "practice_name": "string",
  "philosophy": "text",
  "projects": [
    "string"
  ],
  "awards": [
    "string"
  ],
  "contact_email": "email",
  "location": "string"
}
```

## Placeholder Syntax
Each data point uses `{{key:type}}` — for example:
- `{{practice_name:string}}` → string
- `{{philosophy:text}}` → text
- `{{projects:list<string>}}` → list<string>
- `{{awards:list<string>}}` → list<string>
- `{{contact_email:email}}` → email
- `{{location:string}}` → string

Output ONLY the HTML code block. No explanation.