You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+33-75Lines changed: 33 additions & 75 deletions
Original file line number
Diff line number
Diff line change
@@ -1,85 +1,47 @@
1
-
# Free Tailwind CSS UI Components by TailGrids
1
+
# Free Tailwind CSS UI Components and Blocks by TailGrids
2
2
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.
4
16
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.
6
17
7
18
### [🚀 Explore All Components](https://tailgrids.com/components)
8
19
9
20
### [🌏 Visit Website](https://tailgrids.com)
10
21
11
22
### [📃 Documentation](https://tailgrids.com/docs)
12
23
13
-
## Installation
14
-
15
-
**Step #1**: Install Tailwind and generate the config file.
24
+
### Installing via NPM
16
25
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:
21
27
22
-
Step #2: Install TailGrids
28
+
**1. Install the [TailGrids NPM package](https://www.npmjs.com/package/tailgrids/?ref=tailgrids.com):**
23
29
24
-
```shellscript copy
30
+
```bash
25
31
npm i tailgrids
26
32
```
33
+
**2. Add the TailGrids plugin to your `tailwind.config.js` file:**
27
34
28
-
Step #3: Update the tailwind.config.js file with the TailGrids plugin.
// Your existing Tailwind CSS configuration goes here
38
+
37
39
plugins: [require("tailgrids/plugin")],
38
40
};
39
41
```
42
+
**3. [Browse the components](https://tailgrids.com/components) and simply copy and paste the ones you like into your projects.**
40
43
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.
0 commit comments