1// profile.ts — who I am, in TypeScript
2export const profile = {
3name: "Viktor Blöndal",
4title: "AI Specialist",
5location: "Iceland",
6summary: "Leading AI strategy, adoption and tooling at Blue Lagoon.",
7current: {
8company: "Blue Lagoon",
9role: "AI Specialist",
10focus: [
11"AI strategy & governance",
12"AI education & adoption",
13"Automation",
14"Internal tools & knowledge systems"
15]
16},
17background: [
18{
19company: "Dineout",
20role: "Co-founder / CTO",
21description: "Built and scaled Iceland's leading restaurant reservation platform."
22},
23{
24company: "Basta",
25role: "Frontend Lead",
26description: "Led frontend development across product and customer-facing systems."
27}
28],
29strengths: [
30"Translating business needs into AI strategy & execution",
31"Driving AI adoption across the organization",
32"Delivering high-impact automation",
33"Building internal tools people actually use"
34],
35contact: {
36linkedin: "https://www.linkedin.com/in/viktorblondal",
37email: "viktorblondal@gmail.com"
38}
39};