Getting Started
ElkNK is a developer toolkit for building dynamic UIs with modern web standards. These docs help you integrate our components into your projects.
Key Features
Installation
npm install -save @elkkn/core
Import components using either import or require syntax.
API Reference
Core Components
Available components for your project:
Button
Animated buttons with hover/focus effects
Card
Glassmorphism cards for UI elements
Modal
Responsive overlay dialogs
Table
Interactive data tables with sorting
Examples
Simple Button Example
import { Button } from '@elkkn/core'; function App() { return ( <Button onClick={()=>alert('Hi!')}> Click Me </Button> ); }
Contributing
Want to add features or fix bugs? Check out our contribution guide and join our developer community on GitHub.