slidev-theme-nearform
Version:
NearForm theme for Slidev
105 lines (76 loc) • 1.48 kB
Markdown
theme: ./
layout: cover
background: 'https://source.unsplash.com/collection/94734566/1920x1080'
# Presentation Title
@Author
layout: image-right
image: https://source.unsplash.com/collection/94734566/1920x1080
# Slide Title
Slide Subtitle
# Slide Title
Slide Subtitle
* Slide bullet text
* Slide bullet text
* Slide bullet text
* Slide bullet text
* Slide bullet text
layout: image-right
class: light
image: https://source.unsplash.com/collection/94734566/1920x1080
# Slide Title
Colons can be used to align columns.
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
layout: section
class: dark
# Section Title
layout: statement
# Statement
layout: fact
# 100%
Fact information
layout: quote
# "Notable quote"
Attribution
layout: image-left
image: https://source.unsplash.com/collection/94734566/1920x1080
# Code
```ts {all|2|1-6|all}
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)
}
```
layout: center
class: "text-center"
# Learn More
[Documentations](https://sli.dev) / [GitHub Repo](https://github.com/slidevjs/slidev)