Skip to content

Commit 5deb889

Browse files
committed
2 parents 1b872c1 + 5f38381 commit 5deb889

File tree

1 file changed

+33
-75
lines changed

1 file changed

+33
-75
lines changed

README.md

Lines changed: 33 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,85 +1,47 @@
1-
# Free Tailwind CSS UI Components by TailGrids
1+
# Free Tailwind CSS UI Components and Blocks by TailGrids
22

3-
TailGrids is a library of high-quality Tailwind CSS UI components and blocks, designed specifically for modern websites, landing pages, and web apps. It comes with all the essential UI components and elements you would expect from a top-notch UI library, featuring a consistent design and a copy-paste UI building tool.
3+
TailGrids is modern day Tailwind CSS UI library of over 600 high-quality Tailwind CSS UI components and blocks, perfectly crafted for modern websites, landing pages, web applications, dashboard, ecommerce and more. This library includes all the essential UI components and elements you would expect from a top-notch UI library, ensuring a consistent design and easy-to-use, example templates, copy-paste components for HTML, React, and Vue.
4+
5+
### Key Features:
6+
7+
- **Complete UI Library:** TailGrids boasts an impressive assortment of over 600 Tailwind CSS UI components and blocks.
8+
- **Multi-Framework Support:** TailGrids supports multiple frameworks - HTML, React, and Vue, catering to a wide array of development needs.
9+
- **Premium Quality:** Our components are designed with a consistent, modern aesthetic, ensuring high-end visual quality.
10+
- **User-Friendly:** With a simple copy-paste functionality, TailGrids accelerates the development process, saving you time and effort.
11+
- **Adaptable:** TailGrids is ideal for a variety of applications, including modern websites, landing pages, web apps, dashboards, ecommerce platforms, and more.
12+
- **Accessible Open-Source Version:** Our free version gives you access to over 200 UI components along with all core components.
13+
- **Example Templates:** 14 multi-purpose and unique example templates available in HTML and React.
14+
15+
The free open-source version of TailGrids provides 200+ UI components along with all core components, making it a valuable resource for both personal and commercial projects. Feel free to use it, and don't forget to support and inspire our team by starring this repository.
416

5-
The free core version provides numerous UI components along with all core components. It is available for both personal and commercial projects. Please feel free to use it, and don't forget to support and inspire our team by starring this repo.
617

718
### [🚀 Explore All Components](https://tailgrids.com/components)
819

920
### [🌏 Visit Website](https://tailgrids.com)
1021

1122
### [📃 Documentation](https://tailgrids.com/docs)
1223

13-
## Installation
14-
15-
**Step #1**: Install Tailwind and generate the config file.
24+
### Installing via NPM
1625

17-
```shellscript copy
18-
npm install -D tailwindcss
19-
npx tailwindcss init
20-
```
26+
Ensure you've installed [Node.js](https://nodejs.org) and [Tailwind CSS](https://tailwindcss.com) before TailGrids NPM package. Here's a quick guide to get you started with Tailgrids:
2127

22-
Step #2: Install TailGrids
28+
**1. Install the [TailGrids NPM package](https://www.npmjs.com/package/tailgrids/?ref=tailgrids.com):**
2329

24-
```shellscript copy
30+
```bash
2531
npm i tailgrids
2632
```
33+
**2. Add the TailGrids plugin to your `tailwind.config.js` file:**
2734

28-
Step #3: Update the tailwind.config.js file with the TailGrids plugin.
29-
30-
```js filename="tailwind.config.js" copy showLineNumbers
35+
```javascript
3136
module.exports = {
32-
content: ["./*.html", "./**/*.{html,js,jsx,ts,tsx,vue}", "./assets/**/*.js"],
33-
theme: {},
34-
variants: {
35-
extend: {},
36-
},
37+
// Your existing Tailwind CSS configuration goes here
38+
3739
plugins: [require("tailgrids/plugin")],
3840
};
3941
```
42+
**3. [Browse the components](https://tailgrids.com/components) and simply copy and paste the ones you like into your projects.**
4043

41-
**Note:** This is the config file for the HTML project. Go to [Tailwind CSS docs](https://tailwindcss.com/docs/installation/framework-guides) and install Tailwind according to your Framework and Languages.
42-
43-
**Step #4**: Add Tailwind CSS directives to your CSS.
44-
45-
Create a CSS file named **input.css** in the root of your project or the /**src** directory. Then, include this code at the top of the file.
46-
47-
```css copy
48-
@tailwind base;
49-
@tailwind components;
50-
@tailwind utilities;
51-
```
52-
53-
**Step #5**: Generate the CSS file with the build command.
54-
55-
To do that, we must first add the build script to the **package.json** file. Make sure you’ve provided the correct path of the **input.css** file. If it’s in the root, keep the script as it is. If it’s under the /**src** directory, \*\*\*\*include it before the CSS file.
56-
57-
```javascript copy
58-
"scripts": {
59-
"build": "npx tailwindcss -i ./input.css -o ./dist/output.css --watch"
60-
},
61-
```
62-
63-
Then, we will have to run the build command:
64-
65-
```shellscript copy
66-
npm run build
67-
```
68-
69-
**Step #6**: Include the compiled CSS file in the HTML file. We’ve compiled the file in the **dist** folder.
70-
71-
```html copy
72-
<link href="/dist/output.css" rel="stylesheet" />
73-
```
74-
75-
Now, you can copy and paste the components from TailGrids and build websites.
76-
77-
> This TailGrids NPM package enables you to use UI components seamlessly in HTML, React, and Vue projects.
78-
79-
### Detailed Installation Guides for React and Vue:
80-
81-
- **[Installing on React](https://tailgrids.com/docs/components/react)**
82-
- **[Installing on Vue](https://tailgrids.com/docs/components/vue)**
44+
And that's it! You're all set to start using TailGrids in your project. Happy coding!
8345

8446
### [⚡ Get PRO Version](https://tailgrids.com/pricing)
8547

@@ -91,6 +53,7 @@ Now, you can copy and paste the components from TailGrids and build websites.
9153

9254
### [🖌️ TailGrids Figma](https://tailgrids.com/figma)
9355

56+
9457
## 💙 Support
9558

9659
You can always support this project and inspire us by [Starring🌟 This Repository](https://github.com/TailGrids/tailwind-ui-components)
@@ -99,7 +62,6 @@ and sharing with friends. If you like the the library consider purchasing the [P
9962
## Changelog
10063

10164
### Version 2.2.0
102-
10365
(May, 2024)
10466

10567
- Added over 80 new components.
@@ -109,7 +71,6 @@ and sharing with friends. If you like the the library consider purchasing the [P
10971
- Updated the Tailwind CSS version along with other dependencies.
11072

11173
### Version 2.1.0
112-
11374
(October, 2023)
11475

11576
- Introduced dark mode.
@@ -118,7 +79,6 @@ and sharing with friends. If you like the the library consider purchasing the [P
11879
- Updated dependent packages.
11980

12081
## Version 2.0.0
121-
12282
(February, 2023)
12383

12484
- This major release doubled our components, introduced dark mode, and expanded our components & example templates.
@@ -132,25 +92,23 @@ and sharing with friends. If you like the the library consider purchasing the [P
13292
- 100+ eCommerce Components
13393

13494
## Version 1.1.0
135-
13695
(March, 2022)
13796

13897
We focused on enhancing your design experience with Figma integration and new templates.
13998

140-
- 2 New Templates
141-
- Figma Source for UI Components
142-
- Responsive Buttons / Viewport
143-
- Dedicated Templates Gallery
144-
145-
## Initial Release
99+
- 2 New Templates
100+
- Figma Source for UI Components
101+
- Responsive Buttons / Viewport
102+
- Dedicated Templates Gallery
146103

104+
## Initial Release
147105
(February, 2022)
148106

149107
The journey began! We launched TailGrids with a strong foundation of components and templates.
150108

151-
- Initial 300+ UI Components
152-
- Two Example Templates
153-
- NPM Package for Open Source Version
109+
- Initial 300+ UI Components
110+
- Two Example Templates
111+
- NPM Package for Open Source Version
154112

155113
## 🎁 License
156114

0 commit comments

Comments
 (0)