๐ Slide Decks with Web3 Capabilities
Last updated May 18, 2026
41
Stars
7
Forks
0
Issues
0
Stars/day
Attention Score
21
Language breakdown
No language data available.
โธ Files
click to expand
README

๐ Turbo Slides
Create presentation decks using MDX, React, and Next.js with Web3 capabilities
Features
- ๐ฝ React-based Slideshow
- โ๏ธ Write using Markdown, React components, even HTML!
- ๐จ Themeable with Tailwind or Styled Components
- โป๏ธ Sync slides between browser tabs
- ๐จโ๐ป Presentation Mode
- ๐ Speaker Notes
Getting Started
- Clone the project:
git clone https://github.com/turbo-eth/turbo-slides - Install dependencies: npm i
oryarn - Run the dev server: npm run dev
oryarn dev - Edit the first slide in /pages/index.mdx
and save to see changes!
or yarn build && yarn export will create a static app you can deploy anywhere (or use locally). See below for more details.
Deploying
This project is easy to build locally or using a host with build services (like Netlify or Now).
- โ๏ธ Run the build process:
yarn export
๐ Upload the static contents of out folder to host/CDN (or run the out/index.html locally)
How to Use
๐ฌ Changing the Title/Date/etc
The default theme includes a title, date, author (and link to the author's website) in of the
component. You can edit this data inside the site.config.js file.
โ๏ธ Writing JSX
You can use JSX in a few ways in your MDX files:
- You can use the syntax with HTML (
๐ More in this category