https://github.com/nirnejak/devtuition
DevTuition Intro Presentation
https://github.com/nirnejak/devtuition
Last synced: 4 months ago
JSON representation
DevTuition Intro Presentation
- Host: GitHub
- URL: https://github.com/nirnejak/devtuition
- Owner: nirnejak
- License: mit
- Created: 2024-10-21T20:12:00.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-10-21T21:09:41.000Z (almost 2 years ago)
- Last Synced: 2026-03-14T07:14:02.691Z (5 months ago)
- Language: TypeScript
- Homepage: https://devtuition.vercel.app
- Size: 299 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
React Presentation Maker
---
## Included Slide Components
- `` - A cover slide component with the title and subtitle
- `` - A component to show some code
- `` - A slide component to tell about yourself
- `` - An outro slide component with social details
## Other Included Components
- `` - A wrapper components with appropriate spacing to wrap your slide/regular components
## Additional Packages Used
- **Tailwind CSS** - for styling
- **Framer Motion** - for animations
- **Akar Icons** - for icons
- **use-sound** - for using sound effects
## Available Scripts
**Install Dependencies**
```bash
npm install
```
**Install Git Hooks(Required for Development)**
```bash
npm run prepare
```
**Start Development Server**
```bash
npm run dev
```
**Lint all the files**
```bash
npm run lint
```
**Format all files with Prettier**
```bash
npm run format
```
**Check TypeScript issues**
```bash
npm run type-check
```
**Build for Production**
```bash
npm run build
```
**Start Production Server**
```bash
npm start
```
---