theme | background | themeConfig | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
./ |
|
Created by Elio Struyf
layout: about-me
helloMsg: Hello! name: Elio Struyf imageSrc: https://elio.dev/eliostruyf_2024.webp position: left job: Struyf Consulting line1: "#Stickerpreneur @ pyod.shop" line2: "#Maintainer @ Front Matter CMS" social1: "@eliostruyf" social2: eliostruyf.com social3: elio@struyfconsulting.be
Subtitle for the cover
Subtitle for the section
Subtitle for the center layout
This shows on the left
::right::
This shows on the right
The code highlighting is powered by Shiki and The unnamed - VS Code theme
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)
}
Title | Description | Default |
---|---|---|
layout |
The layout to use for the slide | default |
theme |
The theme to use for the slide | the-unnamed |
highlighter |
The highlighter to use for the slide | shiki |
background |
The background to use for the slide | none |
Some content to place here
- Add a todo list
- Add a todo list
- Add a todo list
Info: This is a note
Slidev is a slides maker and presenter designed for developers, consist of the following features
- 📝 Text-based - focus on the content with Markdown, and then style them later
- 🎨 Themable - theme can be shared and used with npm packages
- 🧑💻 Developer Friendly - code highlighting, live coding with autocompletion
- 🤹 Interactive - embedding Vue components to enhance your expressions
- 🎥 Recording - built-in recording and camera view
- 📤 Portable - export into PDF, PNGs, or even a hostable SPA
- 🛠 Hackable - anything possible on a webpage
Read more about Why Slidev?
Hover on the bottom-left corner to see the navigation's controls panel
space / tab / right | next animation or slide |
left / shiftspace | previous animation or slide |
up | previous slide |
down | next slide |
layout: image-right 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)
}
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)
}
console.log('Click the play button to run me')