theme | colorSchema | highlighter | aspectRatio | canvasWidth | monaco | lineNumbers | download | titleTemplate | layout | logoHeader | website | handle | introImage | info | title |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
./themes/rikkei |
dark |
prism |
16/9 |
980 |
dev |
true |
false |
%s - Rikkei Corp |
intro |
/logo.png |
hnq90 |
## Rikkei - Slidev template
Template for Rikkei's presentations
|
Presentation Title |
Small description for presentation here
logoHeader: /logo.png website: https://rikkeisoft.com handle: hnq90 layout: table-contents gradientColors: ['#b70000', '#dc2626']
Description
- 📝 Section 1 - something 1
- 🎨 Section 2 - something 2
- 🧑💻 Section 3 - something 3
- 🤹 Section 4 - something 4
- 🎥 Section 5 - something 5
logoHeader: /logo.png website: https://rikkeisoft.com handle: hnq90 layout: new-section sectionImage: https://uilogos.co/img/logomark/muszica.png
Some content to explain
logoHeader: /logo.png website: https://rikkeisoft.com handle: hnq90
Content
ABC | DEF |
ABC | DEF |
ABC | DEF |
ABC | DEF |
logoHeader: /logo.png website: https://rikkeisoft.com handle: hnq90 layout: cover
Use code snippets and get the highlighting directly![^1]
interface ErrorHandling {
success: boolean;
error?: { message: string };
}
interface ArtworksData {
artworks: { title: string }[];
}
interface ArtistsData {
artists: { name: string }[];
}
// These interfaces can be composed in responses which have
// both consistent error handling, and their own data.
type ArtworksResponse = ArtworksData & ErrorHandling;
type ArtistsResponse = ArtistsData & ErrorHandling;
logoHeader: /logo.png website: https://rikkeisoft.com handle: hnq90
Use code snippets and get the highlighting directly![^1]
interface ErrorHandling {
success: boolean;
error?: { message: string };
}
interface ArtworksData {
artworks: { title: string }[];
}
interface ArtistsData {
artists: { name: string }[];
}
// These interfaces can be composed in responses which have
// both consistent error handling, and their own data.
type ArtworksResponse = ArtworksData & ErrorHandling;
type ArtistsResponse = ArtistsData & ErrorHandling;