Free, Animated, and Professional UI Components for high-end React apps.
npm install codevora-ui
CodeVora UI • YouTube Community
High-performance theme based UI components.
CodeVora UI is a specialized React component library designed for developers who want to add "Hacker-style," high-performance, and deeply animated visual elements to their web applications without the heavy lifting of custom CSS and Canvas logic.
- Plug & Play: Import and use immediately in any React project.
- Lightweight: Optimized bundle size via Rollup.
- Modern Tech: Compatible with React 17, 18, and 19.
- Beautifully Animated: Built-in animations that work out of the box.
npm install codevora-ui-
For more checkout [CodeVora UI] (https://codevora140.vercel.app/react-library/topics)
import { Background } from 'codevora-ui';
...
return(
<Background preset='Matrix'>
<div style={{minHeight: "100vh"}}>
Hello
</ div>
</Background>
);MIT © Sujan Rai
codevora-ui/
├── index.d.ts
│
├── src/
│ ├── index.js
│ │
│ ├── components/
│ │ ├── core/
│ │ │ ├── Background/
│ │ │ │ ├── Background.jsx
│ │ │ │ ├── Background.d.ts
│ │ │ │ └── preset/
| | | | ├── Matrix/
| | | | | ├── MatrixBackground.jsx
│ │ │ │ | └── MatrixBackground.module.css
| | | | |
| | | | ├── Waves/
| | | | | ├── WavesBackground.jsx
| | | | | └── WavesBackground.module.css
| | | | |
| | | | ├──Cyberpunk/
| | | | ├──Messy/
| | | | └── ..../
│ │ │ ├── index.js
│ │ │ └── index.d.ts
│ │ │
│ │ ├── environments/
│ │ │ ├── HackerBackground/
│ │ │ │ ├── HackerBackground.jsx
│ │ │ │ ├── HackerBackground.css
│ │ │ │ └── index.js
│ │ │ ├── .../
│ │ │ │
│ │ │ ├── index.js
│ │ │ └── index.d.ts
│ │ │
│ │ └── index.js