docs/guide/layout.md
Layouts in Slidev are used to define the structure for each slide. They are Vue components that wrap the content of the slides.
To use a layout, you can specify it in the frontmatter of the slide:
---
layout: quote
---
A quote from someone
By default, the layout of the first slide is cover, and the rest are default.
The layouts are loaded in the following order, and the last one loaded will override the previous ones:
layouts directory<SeeAlso :links="[ 'features/slot-sugar', ]" />