appearances: Add PDFs to talks
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run

Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
SindreKjelsrud 2026-01-12 19:14:59 +01:00
parent 0ebb907096
commit a5380a6048
Signed by: sidski
GPG key ID: D2BBDF3EDE6BA9A6
4 changed files with 5 additions and 3 deletions

View file

@ -28,14 +28,16 @@
"url": null,
"date": "08.02.2025",
"origin": "XChange 2025",
"description": "I had the pleasure of holding a talk at Capgemini's internal knowledge-sharing event, XChange. In my talk, 'Why you as a Capgemini-employee should care about Open Source', I gave an introduction to open source, highlighting its relevance to our values, customer portfolio, and how it drives innovation and sustainability."
"description": "I had the pleasure of holding a talk at Capgemini's internal knowledge-sharing event, XChange. In my talk, 'Why you as a Capgemini-employee should care about Open Source', I gave an introduction to open source, highlighting its relevance to our values, customer portfolio, and how it drives innovation and sustainability.",
"pdf": "/pdfs/hvorfor-skal-du-som-capgemini-ansatt-bry-deg-om-os.pdf"
},
{
"title": "[NO] Introduksjon til Open Source",
"url": "https://files.fribyte.no/boskonf/2024/sindre.mp4",
"date": "07.11.2024",
"origin": "Bergen Open Source 2024",
"description": "I had the pleasure of holding a lightning talk on the Bergen Open Source Conference in 2024. In my lightning talk I gave a quick introduction to open-source, mentioning some of the benefits, showing some well-known project, and how you can get started yourself."
"description": "I had the pleasure of holding a lightning talk on the Bergen Open Source Conference in 2024. In my lightning talk I gave a quick introduction to open-source, mentioning some of the benefits, showing some well-known project, and how you can get started yourself.",
"pdf": "/pdfs/introduksjon-til-open-source.pdf"
}
]
}

View file

@ -41,7 +41,7 @@ import appearances from "../data/appearances.json";
<p>📅: {appearance.date}</p>
<p>🎤: {appearance.origin}</p>
</div>
<p>{appearance.description}</p>
<p>{appearance.description} <a href={appearance.pdf} target="none">[PDF]</a></p>
</div>
))
}