Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
unlight committed Oct 15, 2020
0 parents commit 077ee84
Show file tree
Hide file tree
Showing 7 changed files with 168 additions and 0 deletions.
52 changes: 52 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
### https://raw.github.com/github/gitignore/5d896f6791c4257b74696714c66b2530b8d95a51/Node.gitignore
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# Custom
dist/
~*
.idea
.awcache
.vscode
.rts2_cache_*
.stryker-tmp
reports
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package-lock = false
15 changes: 15 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
printWidth: 100,
trailingComma: 'all',
tabWidth: 4,
semi: true,
singleQuote: true,
overrides: [
{
files: '*.{json,yml}',
options: {
tabWidth: 2,
},
},
],
};
5 changes: 5 additions & 0 deletions .remarkrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
plugins: [
['toc'],
],
};
56 changes: 56 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Tailwind Components

Collection of components found on the internet

| Component | Source | Demo |
| :------------- | :----- | :-------------------- |
| Alert | x | https://merakiui.com/ |
| Alert | x | https://merakiui.com/ |
| Alert | x | https://merakiui.com/ |
| Alert | x | https://merakiui.com/ |
| Alert | x | https://merakiui.com/ |
| Authentication | | |
| Buttons | | |
| Cards | | |
| Dropdowns | | |
| Forms | | |
| Footers | | |
| Heros | | |
| Navbars | | |
| Paginations | | |
| Sections | | |
| Select | | |

#### Alerts

- Alert https://merakiui.com/

#### Authentication

#### Buttons

#### Cards

#### Dropdowns

#### Forms

#### Footers

#### Heros

#### Navbars

#### Paginations

#### Sections

#### Select

## Resources

- https://app.getpocket.com/tags/tailwind/all
- https://github.com/unlight?tab=stars&q=&q=tailwind
- https://github.com/aniftyco/awesome-tailwindcss
- https://github.com/slim-python/tailwind-css-free-components
- https://merakiui.com/
13 changes: 13 additions & 0 deletions Taskfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/bin/bash
PATH="$PWD/node_modules/.bin":$PATH
set -e

remark_run() {
node -r ts-node/register/transpile-only node_modules/remark-cli/cli.js readme.md "$@"
}

remark_output() {
remark_run --output
}

"$@"
26 changes: 26 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"name": "Tailwind Components",
"version": "0.0.0-dev",
"main": "index.js",
"typings": "index.d.ts",
"author": "2020",
"keywords": [],
"scripts": {},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"husky": {
"hooks": {
"pre-commit": "precise-commits"
}
},
"devDependencies": {
"prettier": "^2.1.2",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"remark-toc": "^7.0.0",
"ts-node": "^9.0.0"
}
}

0 comments on commit 077ee84

Please sign in to comment.