theme | title | defaults | speaker | ||||
---|---|---|---|---|---|---|---|
./ |
Slidev Theme ksick-dynatrace |
|
Katharina Sick |
My Personal Dynatrace Theme for Slidev
layout: speaker image: 'https://raw.githubusercontent.com/KatharinaSick/PresentationMaterials/main/About/Headphones.jpg' speaker: Katharina Sick description: Senior Software Engineer at Dynatrace website: ksick.dev
This is a center
slide
layout: image-full image: 'https://source.unsplash.com/collection/94734566/1920x1080'
Use code snippets and get the highlighting directly!
interface User {
id: number
firstName: string
lastName: string
role: string
}
function updateUser(id: number, update: Partial<User>) {
const user = getUser(id)
const newUser = { ...user, ...update }
saveUser(id, newUser)
}
This shows on the left
- Item 1
- Item 2
- Item 3
::right::
This shows on the right
- Item 1
- Item 2
- Item 3
::left::
This shows on the left
::right::
This shows on the right