Skip to content

Commit 7a72304

Browse files
authored
Merge pull request #1 from creativetimofficial/feature/v1.0.0
Feature: v1.0.0
2 parents a82c400 + b81b9f1 commit 7a72304

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1898
-2162
lines changed

.github/workflows/main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Autocloser
2+
on: [issues]
3+
jobs:
4+
autoclose:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Issue auto-closer
8+
uses: roots/issue-closer-action@v1.1
9+
with:
10+
repo-token: ${{ secrets.GITHUB_TOKEN }}
11+
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow our rules:\n\n<pre>\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/tailwind-webapp-react?ref=twr-new-issue\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n</pre>\n\n"
12+
issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Change Log
2+
3+
## [1.0.0] 2020-09-29
4+
### Original Release
5+
- Started project from [Tailwind Starter Kit by Creative Tim](https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation?ref=twr-changelog)
6+
- Added design from Tailwind Starter Kit by Creative Tim

ISSUE_TEMPLATE.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!--
2+
IMPORTANT: Please use the following link to create a new issue:
3+
4+
https://www.creative-tim.com/new-issue/tailwind-webapp-react?ref=twr-new-issue
5+
6+
**If your issue was not created using the app above, it will be closed immediately.**
7+
-->
8+
9+
<!--
10+
Love Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:
11+
👉 https://www.creative-tim.com/bundles?ref=twr-new-issue
12+
👉 https://www.creative-tim.com?ref=twr-new-issue
13+
-->

LICENSE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
MIT License
2+
3+
Copyright (c) 2020 Creative Tim (https://www.creative-tim.com?ref=twr-license)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6+
7+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8+
9+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 168 additions & 167 deletions
Large diffs are not rendered by default.

gulpfile.js

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ gulp.task("licenses", async function () {
99
gap.prependText(`/*!
1010
1111
=========================================================
12-
* Boost Tailwind - v1.0.0
12+
* Tailwind WebApp React - v1.0.0 based on Tailwind Starter Kit by Creative Tim
1313
=========================================================
1414
15-
* Product Page: https://demos.creative-tim.com/tailwindcss-starter-project/#/presentation
16-
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
15+
* Product Page: https://www.creative-tim.com/product/tailwind-webapp-react
16+
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
17+
* Licensed under MIT (https://github.com/creativetimofficial/tailwind-webapp-react/blob/master/LICENSE.md)
18+
19+
* Tailwind Starter Kit Page: https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation
1720
1821
* Coded by Creative Tim
1922
@@ -32,11 +35,14 @@ gulp.task("licenses", async function () {
3235
gap.prependText(`<!--
3336
3437
=========================================================
35-
* Boost Tailwind - v1.0.0
38+
* Tailwind WebApp React - v1.0.0 based on Tailwind Starter Kit by Creative Tim
3639
=========================================================
3740
38-
* Product Page: https://demos.creative-tim.com/tailwindcss-starter-project/#/presentation
39-
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
41+
* Product Page: https://www.creative-tim.com/product/tailwind-webapp-react
42+
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
43+
* Licensed under MIT (https://github.com/creativetimofficial/tailwind-webapp-react/blob/master/LICENSE.md)
44+
45+
* Tailwind Starter Kit Page: https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation
4046
4147
* Coded by Creative Tim
4248
@@ -55,11 +61,14 @@ gulp.task("licenses", async function () {
5561
gap.prependText(`/*!
5662
5763
=========================================================
58-
* Boost Tailwind - v1.0.0
64+
* Tailwind WebApp React - v1.0.0 based on Tailwind Starter Kit by Creative Tim
5965
=========================================================
6066
61-
* Product Page: https://demos.creative-tim.com/tailwindcss-starter-project/#/presentation
62-
* Copyright 2019 Creative Tim (http://www.creative-tim.com)
67+
* Product Page: https://www.creative-tim.com/product/tailwind-webapp-react
68+
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
69+
* Licensed under MIT (https://github.com/creativetimofficial/tailwind-webapp-react/blob/master/LICENSE.md)
70+
71+
* Tailwind Starter Kit Page: https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation
6372
6473
* Coded by Creative Tim
6574

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
11
{
22
"name": "tailwind-webapp-react",
33
"version": "1.0.0",
4+
"description": "Tailwind WebApp React - A free Tailwind CSS and React WebApp template by Creative Tim.",
5+
"repository": "https://github.com/creativetimofficial/tailwind-webapp-react",
6+
"license": "MIT",
47
"dependencies": {
58
"@fortawesome/fontawesome-free": "5.14.0",
6-
"@popperjs/core": "2.4.4",
9+
"@popperjs/core": "2.5.1",
710
"@tailwindcss/custom-forms": "0.2.1",
811
"chart.js": "2.9.3",
12+
"gulp": "4.0.2",
13+
"gulp-append-prepend": "1.0.8",
914
"react": "16.13.1",
1015
"react-dom": "16.13.1",
1116
"react-google-maps": "9.4.5",
1217
"react-router": "5.2.0",
1318
"react-router-dom": "5.2.0",
1419
"react-scripts": "3.4.3",
15-
"tailwindcss": "1.7.6"
20+
"tailwindcss": "1.8.10"
1621
},
1722
"scripts": {
1823
"start": "react-scripts start",
@@ -41,6 +46,6 @@
4146
"@types/googlemaps": "3.39.13",
4247
"@types/markerclustererplus": "2.1.33",
4348
"@types/react": "16.9.49",
44-
"typescript": "4.0.2"
49+
"typescript": "4.0.3"
4550
}
4651
}

public/index.html

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<!--
2+
=========================================================
3+
* Tailwind WebApp React - v1.0.0 based on Tailwind Starter Kit by Creative Tim
4+
=========================================================
5+
6+
* Product Page: https://www.creative-tim.com/product/tailwind-webapp-react
7+
* Copyright 2020 Creative Tim (https://www.creative-tim.com)
8+
* Licensed under MIT (https://github.com/creativetimofficial/tailwind-webapp-react/blob/master/LICENSE.md)
9+
10+
* Tailwind Starter Kit Page: https://www.creative-tim.com/learning-lab/tailwind-starter-kit/presentation
11+
12+
* Coded by Creative Tim
13+
14+
=========================================================
15+
16+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
17+
-->
118
<!DOCTYPE html>
219
<html lang="en">
320
<head>
@@ -28,7 +45,9 @@
2845
work correctly both with client-side routing and a non-root public URL.
2946
Learn how to configure a non-root public URL by running `npm run build`.
3047
-->
31-
<title>Tailwind Starter Kit by Creative Tim | Free and Open Source UI Kit</title>
48+
<title>
49+
Tailwind WebApp React by Creative Tim | Free and Open Source UI Kit
50+
</title>
3251
</head>
3352
<body class="text-gray-800 antialiased">
3453
<noscript>You need to enable JavaScript to run this app.</noscript>

public/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"short_name": "Boost Tailwind",
3-
"name": "Boost Tailwind by Creative Tim",
2+
"short_name": "Tailwind WebApp React",
3+
"name": "Tailwind WebApp React by Creative Tim",
44
"icons": [
55
{
66
"src": "favicon.ico",
5.77 KB
Loading

0 commit comments

Comments
 (0)