th34ll-ui-components
v1.0.1
Published
Welcome to th34ll-ui-components, a collection of unique and responsive React components designed to enrich your web applications. This library offers a variety of components such as buttons, navbars, headers, and carousels, meticulously crafted to provide
Downloads
4
Readme
th34ll-ui-components
Welcome to th34ll-ui-components, a collection of unique and responsive React components designed to enrich your web applications. This library offers a variety of components such as buttons, navbars, headers, and carousels, meticulously crafted to provide both functionality and style.
Installation
To integrate th34ll-ui-components into your project, run:
npm install th34ll-ui-components
Or using yarn:
bash
Copy code
yarn add th34ll-ui-components
Available Components
Here’s a brief overview of the components you can find in this library:
Button
Create interactive buttons with customizable text and click events.
Usage:
jsx
Copy code
import { Button } from 'th34ll-ui-components';
const MyApp = () => (
<Button text="Click Me" onClick={() => alert('Clicked!')} />
);
Navbar
Easily implement a responsive navbar with customizable links.
Usage:
jsx
Copy code
import { Navbar } from 'th34ll-ui-components';
const links = [
{ title: 'Home', href: '/' },
{ title: 'About', href: '/about' },
{ title: 'Contact', href: '/contact' },
];
const MyApp = () => <Navbar links={links} />;
Header
Incorporate headers with titles and optional subtitles into your pages.
Usage:
jsx
Copy code
import { Header } from 'th34ll-ui-components';
const MyApp = () => (
<Header title="Welcome to Our Site" subtitle="Explore our services" />
);
Carousel
Add a simple carousel component to your application for image slideshows.
Usage:
jsx
Copy code
import { Carousel } from 'th34ll-ui-components';
const images = [
'path/to/image1.jpg',
'path/to/image2.jpg',
'path/to/image3.jpg',
];
const MyApp = () => <Carousel images={images} />;
Contributing
Contributions are always welcome! If you have suggestions for improvements or new components, feel free to fork the repository, make your changes, and submit a pull request.