From 5ae83eae87552bcb07a9878526328bd9edb96bdd Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 18 Feb 2022 18:17:36 +0530 Subject: [PATCH 01/36] init --- .../workflows/handle-new-issue-comment.yml | 14 ++++ .github/workflows/handle-new-issue.yml | 19 +++++ .github/workflows/issue-staler.yml | 18 +++++ README.md | 77 +++++++++++++++++++ 4 files changed, 128 insertions(+) create mode 100644 .github/workflows/handle-new-issue-comment.yml create mode 100644 .github/workflows/handle-new-issue.yml create mode 100644 .github/workflows/issue-staler.yml create mode 100644 README.md diff --git a/.github/workflows/handle-new-issue-comment.yml b/.github/workflows/handle-new-issue-comment.yml new file mode 100644 index 000000000..77212e082 --- /dev/null +++ b/.github/workflows/handle-new-issue-comment.yml @@ -0,0 +1,14 @@ +name: 'Handle new issue comment' +on: + issue_comment: + types: [created] + +jobs: + handle_new_issue_comment: + runs-on: ubuntu-latest + name: Handle new issue comment + steps: + - name: Toggle awaiting-reply label + uses: jd-0001/gh-action-toggle-awaiting-reply-label@v2.0.0 + with: + label: awaiting-reply \ No newline at end of file diff --git a/.github/workflows/handle-new-issue.yml b/.github/workflows/handle-new-issue.yml new file mode 100644 index 000000000..d338fe2e0 --- /dev/null +++ b/.github/workflows/handle-new-issue.yml @@ -0,0 +1,19 @@ +name: 'Handle new issue' +on: + issues: + types: [opened] + +jobs: + handle_new_issue: + runs-on: ubuntu-latest + name: Handle new issue + steps: + - name: Find duplicates + uses: wow-actions/potential-duplicates@v1.0.8 + with: + GITHUB_TOKEN: ${{ github.token }} + label: duplicate + comment: > + Potential duplicates: {{#issues}} + - #{{ number }} _({{ accuracy }}% Match)_ + {{/issues}} \ No newline at end of file diff --git a/.github/workflows/issue-staler.yml b/.github/workflows/issue-staler.yml new file mode 100644 index 000000000..9d2342fa7 --- /dev/null +++ b/.github/workflows/issue-staler.yml @@ -0,0 +1,18 @@ +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '30 1 * * *' + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - uses: actions/stale@v4 + with: + stale-issue-message: 'This issue has been automatically marked as stale because its has not had recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.' + close-issue-message: 'This issue has been automatically marked as closed because it has not had recent activity.' + stale-issue-label: 'stale' + only-labels: 'awaiting-reply' + exempt-issue-labels: 'triage' + days-before-stale: 7 + days-before-close: 7 \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 000000000..41680dd2e --- /dev/null +++ b/README.md @@ -0,0 +1,77 @@ +

+ +

+ + {template_name}-logo + +

+ +

+ + {template_name} + +

+ +

{template_punchline}

+ +

+ + license + + GitHub Workflow Status + + GitHub release + + + Twitter Follow + +

+ +[![Materio - Vuetify VueJS Free Admin Template Demo Screenshot]({product_url})]({ts_product_page_url}) + +## Introduction πŸš€ + +{introduction} + +[View Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL}) + +## Installation βš’οΈ + +{installation steps} + +## What's Included πŸ“¦ + +{template_includes} + +## What's in Premium Version πŸ’Ž + +| {template_single_word_name} Free Version | {template_single_word_name} Premium Version | +| ----------------------------------------------- | :------------------------------------------------ | +| [Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL}) | [Demo]({product_landing_page_url}) | +| [Download]({ts_product_page_url}) | [Purchase]({ts_product_page_url}) | +| Single vertical menu | Vertical (+ vertical collapsed) & Horizontal menu | + +## Documentation πŸ“œ + + + +Check GitHub [Wiki]({repo_url}/wiki) of this repo + + + +Check out our live [Documentation]({live_docs_link}) + +## Browser Support πŸ–₯️ + +{note_and_list_of_supported_browsers} + +## Other variants + +- [Vue variant]({free_vue_version_link}) + + +## Useful Links 🎁 + +- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) +- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) +- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) \ No newline at end of file From f37718b2de804cf30fe6ca090924b4d5bbbf4176 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Wed, 23 Feb 2022 10:51:14 +0530 Subject: [PATCH 02/36] issue templates added --- .github/ISSUE_TEMPLATE/bug.yml | 51 ++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 1 + .github/ISSUE_TEMPLATE/feature-request.yml | 18 ++++++++ 3 files changed, 70 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug.yml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml new file mode 100644 index 000000000..6b6dc7ce6 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -0,0 +1,51 @@ +name: Bug 🐞 +description: Report a bug +labels: [Bug] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! ☺️ + - type: textarea + attributes: + label: Steps to reproduce + validations: + required: true + - type: textarea + attributes: + label: What is expected? + validations: + required: true + - type: textarea + attributes: + label: What is actually happening? + validations: + required: true + - type: input + attributes: + label: NodeJS Version + description: Run "node --version" in terminal for node version + placeholder: v16.14.0 + validations: + required: true + - type: input + attributes: + label: Package manager name & version + placeholder: yarn 11.6.2 + validations: + required: true + - type: input + attributes: + label: Browser name & version + placeholder: Chrome Version 98.0.4758.102 + validations: + required: true + - type: input + attributes: + label: Device on which you tested + placeholder: Ubuntu 21.10 64-bit + validations: + required: true + - type: textarea + attributes: + label: Any additional comments? \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..ec4bb386b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 000000000..e41108d20 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,18 @@ +name: Feature request ✨ +description: Suggest an idea or ask for a feature that you would like to have +labels: [feat-req] +body: + - type: markdown + attributes: + value: | + Thanks for letting us know how we can improve our product! ☺️ + - type: textarea + attributes: + label: What problem does this feature solve? + validations: + required: true + - type: textarea + attributes: + label: What does the proposed solution look like? + validations: + required: true \ No newline at end of file From 7f59126a3fe1626144469b4f40c65c5d4247d99f Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Wed, 2 Mar 2022 17:36:55 +0530 Subject: [PATCH 03/36] Update bug.yml --- .github/ISSUE_TEMPLATE/bug.yml | 38 +++++++++++----------------------- 1 file changed, 12 insertions(+), 26 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 6b6dc7ce6..1bde88791 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -21,31 +21,17 @@ body: label: What is actually happening? validations: required: true - - type: input - attributes: - label: NodeJS Version - description: Run "node --version" in terminal for node version - placeholder: v16.14.0 - validations: - required: true - - type: input - attributes: - label: Package manager name & version - placeholder: yarn 11.6.2 - validations: - required: true - - type: input - attributes: - label: Browser name & version - placeholder: Chrome Version 98.0.4758.102 - validations: - required: true - - type: input - attributes: - label: Device on which you tested - placeholder: Ubuntu 21.10 64-bit - validations: - required: true - type: textarea attributes: - label: Any additional comments? \ No newline at end of file + label: Additional data + value: | + + + From 456f84302390acee1a8a2168b2af8779d9c946df Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Wed, 2 Mar 2022 19:04:26 +0530 Subject: [PATCH 04/36] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 41680dd2e..914ab5699 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@

- {template_name} + {template_name_titlized}

@@ -74,4 +74,4 @@ Check out our live [Documentation]({live_docs_link}) - [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) - [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) -- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) \ No newline at end of file +- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) From b661caacff5a7f44ca6746bb4874330eaa659ed6 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Thu, 3 Mar 2022 10:55:23 +0530 Subject: [PATCH 05/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 914ab5699..22c24d9f4 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ | {template_single_word_name} Free Version | {template_single_word_name} Premium Version | | ----------------------------------------------- | :------------------------------------------------ | | [Demo]({direct_demo_url__NOT_PRODUCT_PAGE_URL}) | [Demo]({product_landing_page_url}) | -| [Download]({ts_product_page_url}) | [Purchase]({ts_product_page_url}) | +| [Download]({ts_product_page_url}) | [Purchase]({ts_premium_product_page_url}) | | Single vertical menu | Vertical (+ vertical collapsed) & Horizontal menu | ## Documentation πŸ“œ From ea7a01b4c9e4455c049b71e1132b91d93ad5f661 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:03:47 +0530 Subject: [PATCH 06/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 22c24d9f4..b87a58987 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@

-[![Materio - Vuetify VueJS Free Admin Template Demo Screenshot]({product_url})]({ts_product_page_url}) +[![Materio - Vuetify VueJS Free Admin Template Demo Screenshot]({product_image_url})]({ts_product_page_url}) ## Introduction πŸš€ From 1e4f98d5227c1f7880d725c0dce189b97b238fe4 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:14:25 +0530 Subject: [PATCH 07/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b87a58987..a38da0083 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@

-[![Materio - Vuetify VueJS Free Admin Template Demo Screenshot]({product_image_url})]({ts_product_page_url}) +[![Materio - Vuetify VueJS Free Admin Template Demo Screenshot]({product_demo_image_url})]({ts_product_page_url}) ## Introduction πŸš€ From e5153df14df04551fe6fca6719e90b1a4cfd9ccc Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:26:17 +0530 Subject: [PATCH 08/36] Update README.md --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/README.md b/README.md index a38da0083..085c1f05c 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,39 @@ Check out our live [Documentation]({live_docs_link}) {note_and_list_of_supported_browsers} +## Contributing 🦸 + +Contribution are always welcome and recommended! Here is how: + +- Fork the repository ([here is the guide](https://docs.github.com/en/get-started/quickstart/fork-a-repo)). +- Clone to your machine `git clone https://github.com/YOUR_USERNAME/REPO_URL` Make your changes +- Create a pull request + +### Contribution Requirements 🧰 + +- When you contribute, you agree to give a non-exclusive license to ThemeSelection to use that contribution in any context as we (ThemeSelection) see appropriate. +- If you use content provided by another party, it must be appropriately licensed using an open source license. +- Contributions are only accepted through Github pull requests. +- Finally, contributed code must work in all supported browsers (see above for browser support). + +## Creators πŸ˜‡ + +- [ThemeSelection](https://themeselection.com) + +## Changelog πŸ“† + +Please refer to the [CHANGELOG](CHANGELOG.md) file. We will add a detailed release notes to each new release. + +## NOTE 🏷️ + +**We request you to keep ThemeSelection credit link in the footer section.** + +## Looking For Premium Admin Templates ?? πŸ‘€ + +**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use Free and Premium [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/), [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/), [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/), HTML Themes, and [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) to create your applications faster!. + +If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). + ## Other variants - [Vue variant]({free_vue_version_link}) From cce3d5557251f0fe8ca5feada02ffad02852a1bd Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:30:40 +0530 Subject: [PATCH 09/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 085c1f05c..894fd4766 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ If you want to [Download Free Admin Templates](https://themeselection.com/produc ## Other variants -- [Vue variant]({free_vue_version_link}) +- [Vue variant]({free_vue_version_themeselection_link}) ## Useful Links 🎁 From db3e87b15193255f90e518cf76c402703d08ed48 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Thu, 3 Mar 2022 11:35:31 +0530 Subject: [PATCH 10/36] Update README.md --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 894fd4766..eb36fa080 100644 --- a/README.md +++ b/README.md @@ -69,20 +69,20 @@ Check out our live [Documentation]({live_docs_link}) Contribution are always welcome and recommended! Here is how: -- Fork the repository ([here is the guide](https://docs.github.com/en/get-started/quickstart/fork-a-repo)). -- Clone to your machine `git clone https://github.com/YOUR_USERNAME/REPO_URL` Make your changes -- Create a pull request +* Fork the repository ([here is the guide](https://docs.github.com/en/get-started/quickstart/fork-a-repo)). +* Clone to your machine `git clone https://github.com/YOUR_USERNAME/REPO_URL` Make your changes +* Create a pull request ### Contribution Requirements 🧰 -- When you contribute, you agree to give a non-exclusive license to ThemeSelection to use that contribution in any context as we (ThemeSelection) see appropriate. -- If you use content provided by another party, it must be appropriately licensed using an open source license. -- Contributions are only accepted through Github pull requests. -- Finally, contributed code must work in all supported browsers (see above for browser support). +* When you contribute, you agree to give a non-exclusive license to ThemeSelection to use that contribution in any context as we (ThemeSelection) see appropriate. +* If you use content provided by another party, it must be appropriately licensed using an open source license. +* Contributions are only accepted through Github pull requests. +* Finally, contributed code must work in all supported browsers (see above for browser support). ## Creators πŸ˜‡ -- [ThemeSelection](https://themeselection.com) +* [ThemeSelection](https://themeselection.com) ## Changelog πŸ“† @@ -100,11 +100,11 @@ If you want to [Download Free Admin Templates](https://themeselection.com/produc ## Other variants -- [Vue variant]({free_vue_version_themeselection_link}) +* [Vue variant]({free_vue_version_themeselection_link}) ## Useful Links 🎁 -- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) -- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) -- [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) +* [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) +* [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) +* [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) From f5e5bab49f980cf2d0b05ffa3ff2b92cf5964c87 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Mon, 14 Mar 2022 15:29:08 +0530 Subject: [PATCH 11/36] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000..16781c604 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 ThemeSelection + +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: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +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. From e4f359a02fa0b6cc27c3aba924842a2ee70f3b2c Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Tue, 15 Mar 2022 13:17:36 +0530 Subject: [PATCH 12/36] Update issue-staler.yml --- .github/workflows/issue-staler.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/issue-staler.yml b/.github/workflows/issue-staler.yml index 9d2342fa7..534dc57fd 100644 --- a/.github/workflows/issue-staler.yml +++ b/.github/workflows/issue-staler.yml @@ -9,10 +9,10 @@ jobs: steps: - uses: actions/stale@v4 with: - stale-issue-message: 'This issue has been automatically marked as stale because its has not had recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.' - close-issue-message: 'This issue has been automatically marked as closed because it has not had recent activity.' + stale-issue-message: 'This issue has been automatically marked as stale because it has no recent activity. It will be closed if no further activity occurs. Thank you for raising the concern.' + close-issue-message: 'This issue has been automatically marked as closed because it has no recent activity.' stale-issue-label: 'stale' only-labels: 'awaiting-reply' exempt-issue-labels: 'triage' days-before-stale: 7 - days-before-close: 7 \ No newline at end of file + days-before-close: 7 From cbc6a18d96382bec0aa7b5ac9d8dc5f2c27a8eb4 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Tue, 15 Mar 2022 18:47:48 +0530 Subject: [PATCH 13/36] fixed clone URL --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eb36fa080..9054af127 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ Check out our live [Documentation]({live_docs_link}) Contribution are always welcome and recommended! Here is how: * Fork the repository ([here is the guide](https://docs.github.com/en/get-started/quickstart/fork-a-repo)). -* Clone to your machine `git clone https://github.com/YOUR_USERNAME/REPO_URL` Make your changes +* Clone to your machine `git clone https://github.com/YOUR_USERNAME/REPO_NAME` Make your changes * Create a pull request ### Contribution Requirements 🧰 From 2868ee81fb4d305798451e558d3dda189be489d2 Mon Sep 17 00:00:00 2001 From: JD <47495003+jd-0001@users.noreply.github.com> Date: Tue, 15 Mar 2022 19:38:27 +0530 Subject: [PATCH 14/36] added social media links --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 9054af127..ae6ca5f82 100644 --- a/README.md +++ b/README.md @@ -108,3 +108,10 @@ If you want to [Download Free Admin Templates](https://themeselection.com/produc * [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) * [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) * [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) + +## Social Media :earth_africa: + +- Twitter : [https://twitter.com/Theme_Selection](https://twitter.com/Theme_Selection) +- Facebook : [https://www.facebook.com/ThemeSelections/](https://www.facebook.com/ThemeSelections/) +- Pinterest : [https://pinterest.com/themeselect/](https://pinterest.com/themeselect/) +- Instagram : [https://www.instagram.com/themeselection/](https://www.instagram.com/themeselection/) From 73075a6fbcae3ab5724fdf573e2f96b9ee327a9e Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Thu, 9 Mar 2023 17:32:48 +0530 Subject: [PATCH 15/36] chore: add support label whenever new issue is created --- .github/ISSUE_TEMPLATE/bug.yml | 2 +- .github/ISSUE_TEMPLATE/feature-request.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug.yml b/.github/ISSUE_TEMPLATE/bug.yml index 1bde88791..651be6c5c 100644 --- a/.github/ISSUE_TEMPLATE/bug.yml +++ b/.github/ISSUE_TEMPLATE/bug.yml @@ -1,6 +1,6 @@ name: Bug 🐞 description: Report a bug -labels: [Bug] +labels: [support, bug] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index e41108d20..27cc90564 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,6 +1,6 @@ name: Feature request ✨ description: Suggest an idea or ask for a feature that you would like to have -labels: [feat-req] +labels: [support, feat-req] body: - type: markdown attributes: From 8b31a2fea9aabfe9e95f083c110f71195a661b85 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 17 May 2023 14:56:51 +0530 Subject: [PATCH 16/36] ci: updated awaiting-reply action version --- .github/workflows/handle-new-issue-comment.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/handle-new-issue-comment.yml b/.github/workflows/handle-new-issue-comment.yml index 77212e082..83687ac02 100644 --- a/.github/workflows/handle-new-issue-comment.yml +++ b/.github/workflows/handle-new-issue-comment.yml @@ -9,6 +9,6 @@ jobs: name: Handle new issue comment steps: - name: Toggle awaiting-reply label - uses: jd-0001/gh-action-toggle-awaiting-reply-label@v2.0.0 + uses: jd-solanki/gh-action-toggle-awaiting-reply-label@v2.1.0 with: - label: awaiting-reply \ No newline at end of file + label: awaiting-reply From b69d96df23bcc3034a0e9200f13e5593a88f06a1 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 26 May 2023 12:05:37 +0530 Subject: [PATCH 17/36] feat: added CHANGELOG.md --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..73035d335 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,11 @@ + + +# Changelog + +All notable changes to this template will be documented in this file + +## v1.0.0 (YYYY-MM-DD) + +### Added + +- Initial Release From 43b38152ae11837d16fb456031c0e02186bb3ce9 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 26 May 2023 12:27:04 +0530 Subject: [PATCH 18/36] chore: added package.json & release script --- package.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 000000000..32bc0e291 --- /dev/null +++ b/package.json @@ -0,0 +1,10 @@ +{ + "version": "0.0.0", + "private": true, + "scripts": { + "release": "code -r CHANGELOG.md && node -e \"process.stdin.once('data', () => process.exit())\" && yarn bumpp --all package.json javascript-version/**/package.json typescript-version/**/package.json" + }, + "devDependencies": { + "bumpp": "^8.2.1" + } +} From 4229a87e3eea8d4b007a7f209cbc869341390582 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 26 May 2023 16:36:40 +0530 Subject: [PATCH 19/36] chore: added .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..3c3629e64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +node_modules From a9b4258854833a1352b0bd2b99312f6c82936d30 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 26 May 2023 16:42:57 +0530 Subject: [PATCH 20/36] chore: updated release command in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 32bc0e291..3f8e73cf5 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "version": "0.0.0", "private": true, "scripts": { - "release": "code -r CHANGELOG.md && node -e \"process.stdin.once('data', () => process.exit())\" && yarn bumpp --all package.json javascript-version/**/package.json typescript-version/**/package.json" + "release": "code -r CHANGELOG.md && node -e \"process.stdin.once('data', () => process.exit())\" && yarn bumpp --all package.json javascript-version/package.json typescript-version/package.json" }, "devDependencies": { "bumpp": "^8.2.1" From 743b4ef073edcc06de49a19fa457cbcb8daaa6be Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 26 May 2023 16:46:50 +0530 Subject: [PATCH 21/36] chore: remove package.json & gitignore --- .gitignore | 1 - package.json | 10 ---------- 2 files changed, 11 deletions(-) delete mode 100644 .gitignore delete mode 100644 package.json diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3c3629e64..000000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -node_modules diff --git a/package.json b/package.json deleted file mode 100644 index 3f8e73cf5..000000000 --- a/package.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "version": "0.0.0", - "private": true, - "scripts": { - "release": "code -r CHANGELOG.md && node -e \"process.stdin.once('data', () => process.exit())\" && yarn bumpp --all package.json javascript-version/package.json typescript-version/package.json" - }, - "devDependencies": { - "bumpp": "^8.2.1" - } -} From d2e5b41fb226202cd6832a5f4b6201655228daba Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 23 Jun 2023 18:37:15 +0530 Subject: [PATCH 22/36] ci: Updated issue template to use correct label for issue --- .github/ISSUE_TEMPLATE/feature-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 27cc90564..827311a8d 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,6 +1,6 @@ name: Feature request ✨ description: Suggest an idea or ask for a feature that you would like to have -labels: [support, feat-req] +labels: [support, feature-req] body: - type: markdown attributes: @@ -15,4 +15,4 @@ body: attributes: label: What does the proposed solution look like? validations: - required: true \ No newline at end of file + required: true From 7e1b965f336e9d2eeb1e923fda6c2d1be9ce58fa Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 20 Dec 2023 15:51:08 +0530 Subject: [PATCH 23/36] chore: improved README --- README.md | 51 +++++++++++++++++++++++++++++++++++---------------- 1 file changed, 35 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index ae6ca5f82..4b09a7703 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,10 @@ Check out our live [Documentation]({live_docs_link}) ## Browser Support πŸ–₯️ -{note_and_list_of_supported_browsers} +![chrome](https://github.com/themeselection/template-free/assets/47495003/1d0c484d-d5e3-4062-a382-cd7c5a72257c) +  ![firefox](https://github.com/themeselection/template-free/assets/47495003/4ba29799-ec83-44db-9b40-43076714a05f) +  ![safari](https://github.com/themeselection/template-free/assets/47495003/5cea3807-df27-4edb-99b6-bb46398bff7a) +  ![Microsoft Edge](https://github.com/themeselection/template-free/assets/47495003/8d143a62-6adf-4b24-927c-eaf1e5a16290) ## Contributing 🦸 @@ -80,17 +83,36 @@ Contribution are always welcome and recommended! Here is how: * Contributions are only accepted through Github pull requests. * Finally, contributed code must work in all supported browsers (see above for browser support). -## Creators πŸ˜‡ - -* [ThemeSelection](https://themeselection.com) - ## Changelog πŸ“† Please refer to the [CHANGELOG](CHANGELOG.md) file. We will add a detailed release notes to each new release. -## NOTE 🏷️ +## Support πŸ§‘πŸ»β€πŸ’» + +For free products, enjoy community support via GitHub issues. Upgrade to Premium for dedicated support from our expert team. + +## License © + +- Copyright Β© [ThemeSelection](https://themeselection.com/) +- Licensed under [MIT](LICENSE.md) +- All our free items are Open Source and licensed under MIT. You can use our free items for personal as well as commercial purposes. We just need an attribution from your end. Copy the below link and paste it at the footer of your web application or project. + ```html + ThemeSelection + ``` -**We request you to keep ThemeSelection credit link in the footer section.** +## Also Available In + +

+ vue   + vue   + vue   + vue   + vue   + vue   + vue   +

+ + ## Looking For Premium Admin Templates ?? πŸ‘€ @@ -98,11 +120,6 @@ Please refer to the [CHANGELOG](CHANGELOG.md) file. We will add a detailed relea If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). -## Other variants - -* [Vue variant]({free_vue_version_themeselection_link}) - - ## Useful Links 🎁 * [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) @@ -111,7 +128,9 @@ If you want to [Download Free Admin Templates](https://themeselection.com/produc ## Social Media :earth_africa: -- Twitter : [https://twitter.com/Theme_Selection](https://twitter.com/Theme_Selection) -- Facebook : [https://www.facebook.com/ThemeSelections/](https://www.facebook.com/ThemeSelections/) -- Pinterest : [https://pinterest.com/themeselect/](https://pinterest.com/themeselect/) -- Instagram : [https://www.instagram.com/themeselection/](https://www.instagram.com/themeselection/) +- [Twitter](https://twitter.com/Theme_Selection) +- [Facebook](https://www.facebook.com/ThemeSelections/) +- [Pinterest](https://pinterest.com/themeselect/) +- [Instagram](https://www.instagram.com/themeselection/) +- [Discord](https://discord.gg/kBHkY7DekX) +- [YouTube](https://www.youtube.com/channel/UCuryo5s0CW4aP83itLjIdZg) From 71b65fcae3ada1ca0b147424dcad641d01eefb76 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 20 Dec 2023 17:46:58 +0530 Subject: [PATCH 24/36] chore: improve also available in section --- README.md | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 4b09a7703..57032c3c1 100644 --- a/README.md +++ b/README.md @@ -103,13 +103,24 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium ## Also Available In

- vue   - vue   - vue   - vue   - vue   - vue   - vue   + + vue   + + next.js   + + react   + + html_laravel   + + html_django   + + html   + + net_core   + + angular   + + html  

From 93ee20e2b639600afbb706f00ff6bd85d78eb29d Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 20 Dec 2023 17:51:09 +0530 Subject: [PATCH 25/36] chore: nuxt added in also available in --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 57032c3c1..509dfcc0d 100644 --- a/README.md +++ b/README.md @@ -105,6 +105,8 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium

vue   + + nuxt   next.js   From 281daa5b4c058dd5bb1e84f99fd1a4d3e91bf69d Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 20 Dec 2023 18:14:13 +0530 Subject: [PATCH 26/36] chore: added vue laravel in available in --- README.md | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 509dfcc0d..21238dcec 100644 --- a/README.md +++ b/README.md @@ -104,25 +104,27 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium

- vue   + vue   + + vue_laravel   - nuxt   + nuxt   - next.js   + next.js   - react   + react   - html_laravel   + html_laravel   - html_django   + html_django   - html   + html   - net_core   + net_core   - angular   + angular   - html   + html  

From 1b416dc3223ce2a72fbabe1f978ae05389daeecc Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 20 Dec 2023 18:29:59 +0530 Subject: [PATCH 27/36] chore: README - update also available in order --- README.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 21238dcec..ee039062f 100644 --- a/README.md +++ b/README.md @@ -103,28 +103,28 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium ## Also Available In

- - vue   - - vue_laravel   - - nuxt   - - next.js   - - react   + + html   + + html   html_laravel   html_django   - - html   net_core   + + next.js   + + react   + + vue   + + vue_laravel   + + nuxt   angular   - - html  

From fa57ccc158a1529ac48fbc9f6eba0e8f12c5e17f Mon Sep 17 00:00:00 2001 From: Ajay Patel Date: Thu, 21 Dec 2023 12:08:35 +0530 Subject: [PATCH 28/36] Update README.md Updated Lincse link Updated Looking for premium text. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee039062f..9d33feead 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium ## License © - Copyright Β© [ThemeSelection](https://themeselection.com/) -- Licensed under [MIT](LICENSE.md) +- Licensed under [MIT](LICENSE) - All our free items are Open Source and licensed under MIT. You can use our free items for personal as well as commercial purposes. We just need an attribution from your end. Copy the below link and paste it at the footer of your web application or project. ```html ThemeSelection @@ -127,11 +127,11 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium angular  

- + ## Looking For Premium Admin Templates ?? πŸ‘€ -**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use Free and Premium [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/), [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/), [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/), HTML Themes, and [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) to create your applications faster!. +**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use Free and Premium [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/), [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/), [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/), [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/), [Reatc (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/), [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/), and [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) to create your applications faster! If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). From b0586f3369c17945fdca691f3bb39508a61d188f Mon Sep 17 00:00:00 2001 From: Ajay Patel Date: Thu, 21 Dec 2023 12:12:35 +0530 Subject: [PATCH 29/36] Update README.md Updated looking for premium template section text --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9d33feead..196e954a1 100644 --- a/README.md +++ b/README.md @@ -131,7 +131,15 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium ## Looking For Premium Admin Templates ?? πŸ‘€ -**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use Free and Premium [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/), [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/), [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/), [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/), [Reatc (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/), [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/), and [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) to create your applications faster! +**[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use **Fully Coded Dashboard Templates & UI Kits** to create your applications faster! + +- [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/) +- [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/) +- [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/) +- [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/) +- [Reatc (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/) +- [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/) +- [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). From a9faea2d26a08c65bed232155d2ae2c4f8b5844f Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Thu, 21 Dec 2023 13:08:00 +0530 Subject: [PATCH 30/36] chore: updated browser icon link --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 196e954a1..f811264fc 100644 --- a/README.md +++ b/README.md @@ -63,10 +63,12 @@ Check out our live [Documentation]({live_docs_link}) ## Browser Support πŸ–₯️ -![chrome](https://github.com/themeselection/template-free/assets/47495003/1d0c484d-d5e3-4062-a382-cd7c5a72257c) -  ![firefox](https://github.com/themeselection/template-free/assets/47495003/4ba29799-ec83-44db-9b40-43076714a05f) -  ![safari](https://github.com/themeselection/template-free/assets/47495003/5cea3807-df27-4edb-99b6-bb46398bff7a) -  ![Microsoft Edge](https://github.com/themeselection/template-free/assets/47495003/8d143a62-6adf-4b24-927c-eaf1e5a16290) +![chrome](https://github.com/nuxt/nuxt/assets/47495003/bbb6d7b0-2db6-4af4-abdc-a73de71dd287) +  ![firefox](https://github.com/nuxt/nuxt/assets/47495003/bca1f2d0-d597-453b-8525-5c94e36bfc33) +  ![safari](https://github.com/nuxt/nuxt/assets/47495003/8ecbb395-78fb-40fb-bb59-7301bf8a7e5d) +  ![Microsoft Edge](https://github.com/nuxt/nuxt/assets/47495003/f945821b-0cbd-464d-8103-824d4d5c4e9a) + +*_It also supports other browser which implemented latest CSS standards_ ## Contributing 🦸 From 4ad93120ce9e476b7c9f15152a7638df355d498d Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Thu, 21 Dec 2023 13:10:44 +0530 Subject: [PATCH 31/36] chore: update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f811264fc..ffbff331f 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium

- html   + html   html   From 841f6b76823c1b324abdb498f60919fb3c73b23b Mon Sep 17 00:00:00 2001 From: Pruthvi prajapati <110020770+PruthviPraj00@users.noreply.github.com> Date: Thu, 21 Dec 2023 17:26:57 +0530 Subject: [PATCH 32/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ffbff331f..723ecd377 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium - [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/) - [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/) - [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/) -- [Reatc (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/) +- [React (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/) - [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/) - [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) From 140b91d76b34b55138e69ae8b048bae14b0ed33c Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 5 Jan 2024 12:12:39 +0530 Subject: [PATCH 33/36] chore: added docs filr --- documentation.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 documentation.html diff --git a/documentation.html b/documentation.html new file mode 100644 index 000000000..3038ddb34 --- /dev/null +++ b/documentation.html @@ -0,0 +1,14 @@ + + + + + $template_name + + + + +

If you do not redirect please visit : $docs_url

+ + + From 103b4d0fae02184d2d5af2b7f3b0c9e7e1fb4ec5 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Fri, 5 Jan 2024 12:13:22 +0530 Subject: [PATCH 34/36] chore: added hire-us file --- hire-us.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 hire-us.html diff --git a/hire-us.html b/hire-us.html new file mode 100644 index 000000000..8ade32925 --- /dev/null +++ b/hire-us.html @@ -0,0 +1,14 @@ + + + + + Hire Us + + + + +

If you do not redirect please visit : https://themeselection.com/hire-us/

+ + + From bca3a3eeac5d175cde3df6425ed71c46c9da29e2 Mon Sep 17 00:00:00 2001 From: Yagnik Vamja <118651250+yagnikvamja@users.noreply.github.com> Date: Fri, 15 Mar 2024 16:12:57 +0530 Subject: [PATCH 35/36] Added Vue CheatSheet in Useful Links Section --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 723ecd377..240674ae2 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ If you want to [Download Free Admin Templates](https://themeselection.com/produc ## Useful Links 🎁 +* [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/) * [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) * [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) * [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) From 98e6576d49cfa840abdc06e5ea58a70f2d4b5201 Mon Sep 17 00:00:00 2001 From: JD Solanki Date: Wed, 5 Jun 2024 16:20:28 +0530 Subject: [PATCH 36/36] refactor: updated links --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 240674ae2..7efcdbda7 100644 --- a/README.md +++ b/README.md @@ -135,21 +135,21 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium **[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use **Fully Coded Dashboard Templates & UI Kits** to create your applications faster! -- [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/) -- [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/) -- [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/) +- [Bootstrap Admin Templates](https://themeselection.com/item/category/bootstrap-admin-template/) +- [VueJS Admin Templates](https://themeselection.com/item/category/vuejs-admin-templates/) +- [Laravel Admin Templates](https://themeselection.com/item/category/laravel-admin-templates/) - [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/) - [React (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/) - [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/) -- [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) +- [Free UI Kits](https://themeselection.com/item/category/free-ui-kits/) -If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). +If you want to [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) like Materio then do visit [ThemeSelection](https://themeselection.com/). ## Useful Links 🎁 * [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/) -* [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) -* [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) +* [Freebies](https://themeselection.com/item/category/free-admin-templates/) +* [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) * [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) ## Social Media :earth_africa: