diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0a996ae --- /dev/null +++ b/.gitattributes @@ -0,0 +1,4 @@ +/.gitignore export-ignore +/.gitattributes export-ignore +/.github export-ignore +RELEASE.md export-ignore \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..ef0e60e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,37 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Desktop (please complete the following information):** + + - Browser [e.g. chrome, safari] + - Version [e.g. 22] + +**Smartphone (please complete the following information):** + + - Browser [e.g. stock browser, safari] + - Version [e.g. 22] + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..bbcbbe7 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,20 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e466e7b --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +build +vendor +composer.lock +.idea +.phpunit.result.cache +/.phpunit.cache +.DS_Store +phpunit.xml.dist.bak \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 0000000..d743a67 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,133 @@ + +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the overall + community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official email address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +[connect@codingwithrk.com]. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8655bad --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 CodingwithRK + +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. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac61645 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +

RK BRAND ICONS

+ +## Introduction + +Hello fellow developers, using this package you can display Branded Icons. + +### How to Install + +```bash +composer require codingwithrk/rk-brand-icons +```` + +### How to use + +```bladehtml + +``` +Add color to icon + +```bladehtml + +``` + +Add width & height (default width & height is 32x32) + +```bladehtml + +``` + +## License + +This is open-sourced software licensed under the [MIT license](/LICENSE). \ No newline at end of file diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..3262dcd --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,13 @@ +# Security Policy + +If you discover a security issue, please bring it to our attention right away! + +## Reporting a Vulnerability + +Please **DO NOT** file a public issue to report a security vulnerability, instead send your report privately to **connect@codingwithrk.com**. This will help ensure that any vulnerabilities that are found can be [disclosed responsibly](https://en.wikipedia.org/wiki/Responsible_disclosure) to any affected parties. + +## Supported Versions + +Project versions that are currently being supported with security updates vary per project. +Please see specific project repositories for details. +If nothing is specified, only the latest major versions are supported. \ No newline at end of file diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b2344e9 --- /dev/null +++ b/composer.json @@ -0,0 +1,31 @@ +{ + "name": "codingwithrk/rk-brand-icons", + "description": "In this package there are lot of brand icons.", + "type": "library", + "require": { + "php": "^7.3|^8.0", + "laravel/framework": "^8.0|^9.0|^10.0|^11.0" + }, + "license": "MIT", + "autoload": { + "psr-4": { + "Codingwithrk\\RkBrandIcons\\": "src/" + } + }, + "authors": [ + { + "name": "CodingwithRK", + "email": "pappalarajkumar@gmail.com" + } + ], + "extra": { + "laravel": { + "providers": [ + "Codingwithrk\\RkBrandIcons\\IconServiceProvider" + ], + "aliases": { + "RkIcon": "Codingwithrk\\RkBrandIcons\\Facades\\RkIcon" + } + } + } +} diff --git a/resources/views/icons/accenture.blade.php b/resources/views/icons/accenture.blade.php new file mode 100644 index 0000000..fb8507c --- /dev/null +++ b/resources/views/icons/accenture.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/acer.blade.php b/resources/views/icons/acer.blade.php new file mode 100644 index 0000000..cc260b2 --- /dev/null +++ b/resources/views/icons/acer.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/activision.blade.php b/resources/views/icons/activision.blade.php new file mode 100644 index 0000000..6eec0c6 --- /dev/null +++ b/resources/views/icons/activision.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/adidas.blade.php b/resources/views/icons/adidas.blade.php new file mode 100644 index 0000000..f7e7c22 --- /dev/null +++ b/resources/views/icons/adidas.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/adminer.blade.php b/resources/views/icons/adminer.blade.php new file mode 100644 index 0000000..960c7f9 --- /dev/null +++ b/resources/views/icons/adminer.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/adobe.blade.php b/resources/views/icons/adobe.blade.php new file mode 100644 index 0000000..a00ccaa --- /dev/null +++ b/resources/views/icons/adobe.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/adobeacrobatreader.blade.php b/resources/views/icons/adobeacrobatreader.blade.php new file mode 100644 index 0000000..b569c97 --- /dev/null +++ b/resources/views/icons/adobeacrobatreader.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/adobeaftereffects.blade.php b/resources/views/icons/adobeaftereffects.blade.php new file mode 100644 index 0000000..770727d --- /dev/null +++ b/resources/views/icons/adobeaftereffects.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobeaudition.blade.php b/resources/views/icons/adobeaudition.blade.php new file mode 100644 index 0000000..9d06402 --- /dev/null +++ b/resources/views/icons/adobeaudition.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobecreativecloud.blade.php b/resources/views/icons/adobecreativecloud.blade.php new file mode 100644 index 0000000..d3ce65b --- /dev/null +++ b/resources/views/icons/adobecreativecloud.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobedreamweaver.blade.php b/resources/views/icons/adobedreamweaver.blade.php new file mode 100644 index 0000000..d3435eb --- /dev/null +++ b/resources/views/icons/adobedreamweaver.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobeillustrator.blade.php b/resources/views/icons/adobeillustrator.blade.php new file mode 100644 index 0000000..d30a784 --- /dev/null +++ b/resources/views/icons/adobeillustrator.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobeindesign.blade.php b/resources/views/icons/adobeindesign.blade.php new file mode 100644 index 0000000..4eef79d --- /dev/null +++ b/resources/views/icons/adobeindesign.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobelightroom.blade.php b/resources/views/icons/adobelightroom.blade.php new file mode 100644 index 0000000..82241ce --- /dev/null +++ b/resources/views/icons/adobelightroom.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobelightroomclassic.blade.php b/resources/views/icons/adobelightroomclassic.blade.php new file mode 100644 index 0000000..b559ee3 --- /dev/null +++ b/resources/views/icons/adobelightroomclassic.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobephotoshop.blade.php b/resources/views/icons/adobephotoshop.blade.php new file mode 100644 index 0000000..b5a9ec9 --- /dev/null +++ b/resources/views/icons/adobephotoshop.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobepremierepro.blade.php b/resources/views/icons/adobepremierepro.blade.php new file mode 100644 index 0000000..4cf1e06 --- /dev/null +++ b/resources/views/icons/adobepremierepro.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adobexd.blade.php b/resources/views/icons/adobexd.blade.php new file mode 100644 index 0000000..60b6474 --- /dev/null +++ b/resources/views/icons/adobexd.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/adp.blade.php b/resources/views/icons/adp.blade.php new file mode 100644 index 0000000..2999933 --- /dev/null +++ b/resources/views/icons/adp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/airplayaudio.blade.php b/resources/views/icons/airplayaudio.blade.php new file mode 100644 index 0000000..5b1b4e2 --- /dev/null +++ b/resources/views/icons/airplayaudio.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/airplayvideo.blade.php b/resources/views/icons/airplayvideo.blade.php new file mode 100644 index 0000000..dc33499 --- /dev/null +++ b/resources/views/icons/airplayvideo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/airtel.blade.php b/resources/views/icons/airtel.blade.php new file mode 100644 index 0000000..43c55ae --- /dev/null +++ b/resources/views/icons/airtel.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/algolia.blade.php b/resources/views/icons/algolia.blade.php new file mode 100644 index 0000000..7e981ca --- /dev/null +++ b/resources/views/icons/algolia.blade.php @@ -0,0 +1,3 @@ + + + diff --git a/resources/views/icons/alibabadotcom.blade.php b/resources/views/icons/alibabadotcom.blade.php new file mode 100644 index 0000000..cc5fe55 --- /dev/null +++ b/resources/views/icons/alibabadotcom.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/aliexpress.blade.php b/resources/views/icons/aliexpress.blade.php new file mode 100644 index 0000000..9ee09d5 --- /dev/null +++ b/resources/views/icons/aliexpress.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/alipay.blade.php b/resources/views/icons/alipay.blade.php new file mode 100644 index 0000000..088b294 --- /dev/null +++ b/resources/views/icons/alipay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/alpinedotjs.blade.php b/resources/views/icons/alpinedotjs.blade.php new file mode 100644 index 0000000..3e795e1 --- /dev/null +++ b/resources/views/icons/alpinedotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazon.blade.php b/resources/views/icons/amazon.blade.php new file mode 100644 index 0000000..e3b1085 --- /dev/null +++ b/resources/views/icons/amazon.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonalexa.blade.php b/resources/views/icons/amazonalexa.blade.php new file mode 100644 index 0000000..06d0f6b --- /dev/null +++ b/resources/views/icons/amazonalexa.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonapigateway.blade.php b/resources/views/icons/amazonapigateway.blade.php new file mode 100644 index 0000000..5f5ff6e --- /dev/null +++ b/resources/views/icons/amazonapigateway.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazoncloudwatch.blade.php b/resources/views/icons/amazoncloudwatch.blade.php new file mode 100644 index 0000000..bb01b24 --- /dev/null +++ b/resources/views/icons/amazoncloudwatch.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazoncognito.blade.php b/resources/views/icons/amazoncognito.blade.php new file mode 100644 index 0000000..014055e --- /dev/null +++ b/resources/views/icons/amazoncognito.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazondocumentdb.blade.php b/resources/views/icons/amazondocumentdb.blade.php new file mode 100644 index 0000000..dc7cbc4 --- /dev/null +++ b/resources/views/icons/amazondocumentdb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazondynamodb.blade.php b/resources/views/icons/amazondynamodb.blade.php new file mode 100644 index 0000000..333f25d --- /dev/null +++ b/resources/views/icons/amazondynamodb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonec2.blade.php b/resources/views/icons/amazonec2.blade.php new file mode 100644 index 0000000..b757f76 --- /dev/null +++ b/resources/views/icons/amazonec2.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonecs.blade.php b/resources/views/icons/amazonecs.blade.php new file mode 100644 index 0000000..5831397 --- /dev/null +++ b/resources/views/icons/amazonecs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazoneks.blade.php b/resources/views/icons/amazoneks.blade.php new file mode 100644 index 0000000..f6d3cea --- /dev/null +++ b/resources/views/icons/amazoneks.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonelasticache.blade.php b/resources/views/icons/amazonelasticache.blade.php new file mode 100644 index 0000000..72d3ce7 --- /dev/null +++ b/resources/views/icons/amazonelasticache.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonfiretv.blade.php b/resources/views/icons/amazonfiretv.blade.php new file mode 100644 index 0000000..6516a2f --- /dev/null +++ b/resources/views/icons/amazonfiretv.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazongames.blade.php b/resources/views/icons/amazongames.blade.php new file mode 100644 index 0000000..11c110d --- /dev/null +++ b/resources/views/icons/amazongames.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazoniam.blade.php b/resources/views/icons/amazoniam.blade.php new file mode 100644 index 0000000..147d217 --- /dev/null +++ b/resources/views/icons/amazoniam.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonlumberyard.blade.php b/resources/views/icons/amazonlumberyard.blade.php new file mode 100644 index 0000000..c2a4362 --- /dev/null +++ b/resources/views/icons/amazonlumberyard.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonluna.blade.php b/resources/views/icons/amazonluna.blade.php new file mode 100644 index 0000000..996bb74 --- /dev/null +++ b/resources/views/icons/amazonluna.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonmusic.blade.php b/resources/views/icons/amazonmusic.blade.php new file mode 100644 index 0000000..6d6bf6c --- /dev/null +++ b/resources/views/icons/amazonmusic.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonpay.blade.php b/resources/views/icons/amazonpay.blade.php new file mode 100644 index 0000000..86c8dc2 --- /dev/null +++ b/resources/views/icons/amazonpay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonprime.blade.php b/resources/views/icons/amazonprime.blade.php new file mode 100644 index 0000000..d959954 --- /dev/null +++ b/resources/views/icons/amazonprime.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonrds.blade.php b/resources/views/icons/amazonrds.blade.php new file mode 100644 index 0000000..b321d19 --- /dev/null +++ b/resources/views/icons/amazonrds.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonredshift.blade.php b/resources/views/icons/amazonredshift.blade.php new file mode 100644 index 0000000..2058db3 --- /dev/null +++ b/resources/views/icons/amazonredshift.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonroute53.blade.php b/resources/views/icons/amazonroute53.blade.php new file mode 100644 index 0000000..cfe5c09 --- /dev/null +++ b/resources/views/icons/amazonroute53.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazons3.blade.php b/resources/views/icons/amazons3.blade.php new file mode 100644 index 0000000..6ceb461 --- /dev/null +++ b/resources/views/icons/amazons3.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonsimpleemailservice.blade.php b/resources/views/icons/amazonsimpleemailservice.blade.php new file mode 100644 index 0000000..0d5086d --- /dev/null +++ b/resources/views/icons/amazonsimpleemailservice.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonsqs.blade.php b/resources/views/icons/amazonsqs.blade.php new file mode 100644 index 0000000..8a7c0f7 --- /dev/null +++ b/resources/views/icons/amazonsqs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amazonwebservices.blade.php b/resources/views/icons/amazonwebservices.blade.php new file mode 100644 index 0000000..95b84d5 --- /dev/null +++ b/resources/views/icons/amazonwebservices.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amd.blade.php b/resources/views/icons/amd.blade.php new file mode 100644 index 0000000..001fbcf --- /dev/null +++ b/resources/views/icons/amd.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/americanexpress.blade.php b/resources/views/icons/americanexpress.blade.php new file mode 100644 index 0000000..ce8cb3f --- /dev/null +++ b/resources/views/icons/americanexpress.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/amul.blade.php b/resources/views/icons/amul.blade.php new file mode 100644 index 0000000..bfbb43e --- /dev/null +++ b/resources/views/icons/amul.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/anaconda.blade.php b/resources/views/icons/anaconda.blade.php new file mode 100644 index 0000000..d8bb1d8 --- /dev/null +++ b/resources/views/icons/anaconda.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/android.blade.php b/resources/views/icons/android.blade.php new file mode 100644 index 0000000..df03dfb --- /dev/null +++ b/resources/views/icons/android.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/androidstudio.blade.php b/resources/views/icons/androidstudio.blade.php new file mode 100644 index 0000000..9171173 --- /dev/null +++ b/resources/views/icons/androidstudio.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/angular.blade.php b/resources/views/icons/angular.blade.php new file mode 100644 index 0000000..2437b18 --- /dev/null +++ b/resources/views/icons/angular.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apache.blade.php b/resources/views/icons/apache.blade.php new file mode 100644 index 0000000..3539f39 --- /dev/null +++ b/resources/views/icons/apache.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheairflow.blade.php b/resources/views/icons/apacheairflow.blade.php new file mode 100644 index 0000000..36bfa77 --- /dev/null +++ b/resources/views/icons/apacheairflow.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheant.blade.php b/resources/views/icons/apacheant.blade.php new file mode 100644 index 0000000..4b1b289 --- /dev/null +++ b/resources/views/icons/apacheant.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachecassandra.blade.php b/resources/views/icons/apachecassandra.blade.php new file mode 100644 index 0000000..7e0383f --- /dev/null +++ b/resources/views/icons/apachecassandra.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachecloudstack.blade.php b/resources/views/icons/apachecloudstack.blade.php new file mode 100644 index 0000000..adabd2e --- /dev/null +++ b/resources/views/icons/apachecloudstack.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachecordova.blade.php b/resources/views/icons/apachecordova.blade.php new file mode 100644 index 0000000..054c8f6 --- /dev/null +++ b/resources/views/icons/apachecordova.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachecouchdb.blade.php b/resources/views/icons/apachecouchdb.blade.php new file mode 100644 index 0000000..af89e93 --- /dev/null +++ b/resources/views/icons/apachecouchdb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachedruid.blade.php b/resources/views/icons/apachedruid.blade.php new file mode 100644 index 0000000..608be6f --- /dev/null +++ b/resources/views/icons/apachedruid.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheecharts.blade.php b/resources/views/icons/apacheecharts.blade.php new file mode 100644 index 0000000..bebe3a3 --- /dev/null +++ b/resources/views/icons/apacheecharts.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheflink.blade.php b/resources/views/icons/apacheflink.blade.php new file mode 100644 index 0000000..ea51db1 --- /dev/null +++ b/resources/views/icons/apacheflink.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachefreemarker.blade.php b/resources/views/icons/apachefreemarker.blade.php new file mode 100644 index 0000000..7cfc691 --- /dev/null +++ b/resources/views/icons/apachefreemarker.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachegroovy.blade.php b/resources/views/icons/apachegroovy.blade.php new file mode 100644 index 0000000..1b9187e --- /dev/null +++ b/resources/views/icons/apachegroovy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheguacamole.blade.php b/resources/views/icons/apacheguacamole.blade.php new file mode 100644 index 0000000..cec4a16 --- /dev/null +++ b/resources/views/icons/apacheguacamole.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachehadoop.blade.php b/resources/views/icons/apachehadoop.blade.php new file mode 100644 index 0000000..cc0907b --- /dev/null +++ b/resources/views/icons/apachehadoop.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachehbase.blade.php b/resources/views/icons/apachehbase.blade.php new file mode 100644 index 0000000..20c6372 --- /dev/null +++ b/resources/views/icons/apachehbase.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachehive.blade.php b/resources/views/icons/apachehive.blade.php new file mode 100644 index 0000000..a25f572 --- /dev/null +++ b/resources/views/icons/apachehive.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachejmeter.blade.php b/resources/views/icons/apachejmeter.blade.php new file mode 100644 index 0000000..64422da --- /dev/null +++ b/resources/views/icons/apachejmeter.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachekafka.blade.php b/resources/views/icons/apachekafka.blade.php new file mode 100644 index 0000000..692761d --- /dev/null +++ b/resources/views/icons/apachekafka.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachekylin.blade.php b/resources/views/icons/apachekylin.blade.php new file mode 100644 index 0000000..be66587 --- /dev/null +++ b/resources/views/icons/apachekylin.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachemaven.blade.php b/resources/views/icons/apachemaven.blade.php new file mode 100644 index 0000000..196af42 --- /dev/null +++ b/resources/views/icons/apachemaven.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachenetbeanside.blade.php b/resources/views/icons/apachenetbeanside.blade.php new file mode 100644 index 0000000..5c107f2 --- /dev/null +++ b/resources/views/icons/apachenetbeanside.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheopenoffice.blade.php b/resources/views/icons/apacheopenoffice.blade.php new file mode 100644 index 0000000..ae08888 --- /dev/null +++ b/resources/views/icons/apacheopenoffice.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacheparquet.blade.php b/resources/views/icons/apacheparquet.blade.php new file mode 100644 index 0000000..3a5f217 --- /dev/null +++ b/resources/views/icons/apacheparquet.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachepulsar.blade.php b/resources/views/icons/apachepulsar.blade.php new file mode 100644 index 0000000..ee51191 --- /dev/null +++ b/resources/views/icons/apachepulsar.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apacherocketmq.blade.php b/resources/views/icons/apacherocketmq.blade.php new file mode 100644 index 0000000..eef36f2 --- /dev/null +++ b/resources/views/icons/apacherocketmq.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachesolr.blade.php b/resources/views/icons/apachesolr.blade.php new file mode 100644 index 0000000..c19cd47 --- /dev/null +++ b/resources/views/icons/apachesolr.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachespark.blade.php b/resources/views/icons/apachespark.blade.php new file mode 100644 index 0000000..e3934df --- /dev/null +++ b/resources/views/icons/apachespark.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachestorm.blade.php b/resources/views/icons/apachestorm.blade.php new file mode 100644 index 0000000..50c4b43 --- /dev/null +++ b/resources/views/icons/apachestorm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachesuperset.blade.php b/resources/views/icons/apachesuperset.blade.php new file mode 100644 index 0000000..b54c8d7 --- /dev/null +++ b/resources/views/icons/apachesuperset.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apachetomcat.blade.php b/resources/views/icons/apachetomcat.blade.php new file mode 100644 index 0000000..735634c --- /dev/null +++ b/resources/views/icons/apachetomcat.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/apple.blade.php b/resources/views/icons/apple.blade.php new file mode 100644 index 0000000..f69aafb --- /dev/null +++ b/resources/views/icons/apple.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/applearcade.blade.php b/resources/views/icons/applearcade.blade.php new file mode 100644 index 0000000..3ac3933 --- /dev/null +++ b/resources/views/icons/applearcade.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/applemusic.blade.php b/resources/views/icons/applemusic.blade.php new file mode 100644 index 0000000..9c9e23c --- /dev/null +++ b/resources/views/icons/applemusic.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/applenews.blade.php b/resources/views/icons/applenews.blade.php new file mode 100644 index 0000000..d076508 --- /dev/null +++ b/resources/views/icons/applenews.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/applepay.blade.php b/resources/views/icons/applepay.blade.php new file mode 100644 index 0000000..58736c4 --- /dev/null +++ b/resources/views/icons/applepay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/applepodcasts.blade.php b/resources/views/icons/applepodcasts.blade.php new file mode 100644 index 0000000..0f30537 --- /dev/null +++ b/resources/views/icons/applepodcasts.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/appletv.blade.php b/resources/views/icons/appletv.blade.php new file mode 100644 index 0000000..5628f0a --- /dev/null +++ b/resources/views/icons/appletv.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/appstore.blade.php b/resources/views/icons/appstore.blade.php new file mode 100644 index 0000000..4119ad8 --- /dev/null +++ b/resources/views/icons/appstore.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/appwrite.blade.php b/resources/views/icons/appwrite.blade.php new file mode 100644 index 0000000..d630983 --- /dev/null +++ b/resources/views/icons/appwrite.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/astro.blade.php b/resources/views/icons/astro.blade.php new file mode 100644 index 0000000..507e73d --- /dev/null +++ b/resources/views/icons/astro.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/asus.blade.php b/resources/views/icons/asus.blade.php new file mode 100644 index 0000000..3f819ea --- /dev/null +++ b/resources/views/icons/asus.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/atandt.blade.php b/resources/views/icons/atandt.blade.php new file mode 100644 index 0000000..7ee65b5 --- /dev/null +++ b/resources/views/icons/atandt.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/atlassian.blade.php b/resources/views/icons/atlassian.blade.php new file mode 100644 index 0000000..d41efe4 --- /dev/null +++ b/resources/views/icons/atlassian.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/audacity.blade.php b/resources/views/icons/audacity.blade.php new file mode 100644 index 0000000..da8ccd1 --- /dev/null +++ b/resources/views/icons/audacity.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/audi.blade.php b/resources/views/icons/audi.blade.php new file mode 100644 index 0000000..b98380c --- /dev/null +++ b/resources/views/icons/audi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/audible.blade.php b/resources/views/icons/audible.blade.php new file mode 100644 index 0000000..397b129 --- /dev/null +++ b/resources/views/icons/audible.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/auth0.blade.php b/resources/views/icons/auth0.blade.php new file mode 100644 index 0000000..4ea54d3 --- /dev/null +++ b/resources/views/icons/auth0.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/autocad.blade.php b/resources/views/icons/autocad.blade.php new file mode 100644 index 0000000..1b41888 --- /dev/null +++ b/resources/views/icons/autocad.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/autodesk.blade.php b/resources/views/icons/autodesk.blade.php new file mode 100644 index 0000000..f052396 --- /dev/null +++ b/resources/views/icons/autodesk.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/autodeskmaya.blade.php b/resources/views/icons/autodeskmaya.blade.php new file mode 100644 index 0000000..2358cf3 --- /dev/null +++ b/resources/views/icons/autodeskmaya.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/autodeskrevit.blade.php b/resources/views/icons/autodeskrevit.blade.php new file mode 100644 index 0000000..cd725fc --- /dev/null +++ b/resources/views/icons/autodeskrevit.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/awsfargate.blade.php b/resources/views/icons/awsfargate.blade.php new file mode 100644 index 0000000..d75ef03 --- /dev/null +++ b/resources/views/icons/awsfargate.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/awslambda.blade.php b/resources/views/icons/awslambda.blade.php new file mode 100644 index 0000000..1675cb2 --- /dev/null +++ b/resources/views/icons/awslambda.blade.php @@ -0,0 +1,2 @@ + + diff --git a/resources/views/icons/awsorganizations.blade.php b/resources/views/icons/awsorganizations.blade.php new file mode 100644 index 0000000..e087122 --- /dev/null +++ b/resources/views/icons/awsorganizations.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/awssecretsmanager.blade.php b/resources/views/icons/awssecretsmanager.blade.php new file mode 100644 index 0000000..d6aebec --- /dev/null +++ b/resources/views/icons/awssecretsmanager.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/awwwards.blade.php b/resources/views/icons/awwwards.blade.php new file mode 100644 index 0000000..0faa3df --- /dev/null +++ b/resources/views/icons/awwwards.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/axios.blade.php b/resources/views/icons/axios.blade.php new file mode 100644 index 0000000..f7c1774 --- /dev/null +++ b/resources/views/icons/axios.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/babel.blade.php b/resources/views/icons/babel.blade.php new file mode 100644 index 0000000..5890cb9 --- /dev/null +++ b/resources/views/icons/babel.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/backbonedotjs.blade.php b/resources/views/icons/backbonedotjs.blade.php new file mode 100644 index 0000000..cfbd267 --- /dev/null +++ b/resources/views/icons/backbonedotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bata.blade.php b/resources/views/icons/bata.blade.php new file mode 100644 index 0000000..26cb495 --- /dev/null +++ b/resources/views/icons/bata.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/beatsbydre.blade.php b/resources/views/icons/beatsbydre.blade.php new file mode 100644 index 0000000..f4ea05b --- /dev/null +++ b/resources/views/icons/beatsbydre.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/behance.blade.php b/resources/views/icons/behance.blade.php new file mode 100644 index 0000000..e5dc669 --- /dev/null +++ b/resources/views/icons/behance.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bentley.blade.php b/resources/views/icons/bentley.blade.php new file mode 100644 index 0000000..1b67b11 --- /dev/null +++ b/resources/views/icons/bentley.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bigbasket.blade.php b/resources/views/icons/bigbasket.blade.php new file mode 100644 index 0000000..e822022 --- /dev/null +++ b/resources/views/icons/bigbasket.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bitbucket.blade.php b/resources/views/icons/bitbucket.blade.php new file mode 100644 index 0000000..ced6346 --- /dev/null +++ b/resources/views/icons/bitbucket.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bitcoin.blade.php b/resources/views/icons/bitcoin.blade.php new file mode 100644 index 0000000..ba3f480 --- /dev/null +++ b/resources/views/icons/bitcoin.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bittorrent.blade.php b/resources/views/icons/bittorrent.blade.php new file mode 100644 index 0000000..13a9b77 --- /dev/null +++ b/resources/views/icons/bittorrent.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/blackberry.blade.php b/resources/views/icons/blackberry.blade.php new file mode 100644 index 0000000..dc8b612 --- /dev/null +++ b/resources/views/icons/blackberry.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/blender.blade.php b/resources/views/icons/blender.blade.php new file mode 100644 index 0000000..6902e26 --- /dev/null +++ b/resources/views/icons/blender.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/blogger.blade.php b/resources/views/icons/blogger.blade.php new file mode 100644 index 0000000..b8bb5f1 --- /dev/null +++ b/resources/views/icons/blogger.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bluetooth.blade.php b/resources/views/icons/bluetooth.blade.php new file mode 100644 index 0000000..b1523c1 --- /dev/null +++ b/resources/views/icons/bluetooth.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bmw.blade.php b/resources/views/icons/bmw.blade.php new file mode 100644 index 0000000..7b34de5 --- /dev/null +++ b/resources/views/icons/bmw.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/boat.blade.php b/resources/views/icons/boat.blade.php new file mode 100644 index 0000000..d7428ef --- /dev/null +++ b/resources/views/icons/boat.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bookmyshow.blade.php b/resources/views/icons/bookmyshow.blade.php new file mode 100644 index 0000000..c5be055 --- /dev/null +++ b/resources/views/icons/bookmyshow.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bootstrap.blade.php b/resources/views/icons/bootstrap.blade.php new file mode 100644 index 0000000..506bdfb --- /dev/null +++ b/resources/views/icons/bootstrap.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bosch.blade.php b/resources/views/icons/bosch.blade.php new file mode 100644 index 0000000..8a28dbe --- /dev/null +++ b/resources/views/icons/bosch.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bose.blade.php b/resources/views/icons/bose.blade.php new file mode 100644 index 0000000..a0b038d --- /dev/null +++ b/resources/views/icons/bose.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bulma.blade.php b/resources/views/icons/bulma.blade.php new file mode 100644 index 0000000..983671d --- /dev/null +++ b/resources/views/icons/bulma.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/bun.blade.php b/resources/views/icons/bun.blade.php new file mode 100644 index 0000000..9f9f75d --- /dev/null +++ b/resources/views/icons/bun.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/burgerking.blade.php b/resources/views/icons/burgerking.blade.php new file mode 100644 index 0000000..3ef9745 --- /dev/null +++ b/resources/views/icons/burgerking.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/buymeacoffee.blade.php b/resources/views/icons/buymeacoffee.blade.php new file mode 100644 index 0000000..471580f --- /dev/null +++ b/resources/views/icons/buymeacoffee.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/byjus.blade.php b/resources/views/icons/byjus.blade.php new file mode 100644 index 0000000..917432c --- /dev/null +++ b/resources/views/icons/byjus.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/c.blade.php b/resources/views/icons/c.blade.php new file mode 100644 index 0000000..448a345 --- /dev/null +++ b/resources/views/icons/c.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cakephp.blade.php b/resources/views/icons/cakephp.blade.php new file mode 100644 index 0000000..7dcabb8 --- /dev/null +++ b/resources/views/icons/cakephp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/canva.blade.php b/resources/views/icons/canva.blade.php new file mode 100644 index 0000000..cd50562 --- /dev/null +++ b/resources/views/icons/canva.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/capacitor.blade.php b/resources/views/icons/capacitor.blade.php new file mode 100644 index 0000000..2d7424a --- /dev/null +++ b/resources/views/icons/capacitor.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/caterpillar.blade.php b/resources/views/icons/caterpillar.blade.php new file mode 100644 index 0000000..624f532 --- /dev/null +++ b/resources/views/icons/caterpillar.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ccleaner.blade.php b/resources/views/icons/ccleaner.blade.php new file mode 100644 index 0000000..ad3cc36 --- /dev/null +++ b/resources/views/icons/ccleaner.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/chromecast.blade.php b/resources/views/icons/chromecast.blade.php new file mode 100644 index 0000000..669c5f0 --- /dev/null +++ b/resources/views/icons/chromecast.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/chromewebstore.blade.php b/resources/views/icons/chromewebstore.blade.php new file mode 100644 index 0000000..364c821 --- /dev/null +++ b/resources/views/icons/chromewebstore.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cisco.blade.php b/resources/views/icons/cisco.blade.php new file mode 100644 index 0000000..94cab9d --- /dev/null +++ b/resources/views/icons/cisco.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/clion.blade.php b/resources/views/icons/clion.blade.php new file mode 100644 index 0000000..98eb668 --- /dev/null +++ b/resources/views/icons/clion.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cloudflare.blade.php b/resources/views/icons/cloudflare.blade.php new file mode 100644 index 0000000..8e3dec3 --- /dev/null +++ b/resources/views/icons/cloudflare.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cloudways.blade.php b/resources/views/icons/cloudways.blade.php new file mode 100644 index 0000000..14a77f8 --- /dev/null +++ b/resources/views/icons/cloudways.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cnn.blade.php b/resources/views/icons/cnn.blade.php new file mode 100644 index 0000000..82337d9 --- /dev/null +++ b/resources/views/icons/cnn.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/codecademy.blade.php b/resources/views/icons/codecademy.blade.php new file mode 100644 index 0000000..8715673 --- /dev/null +++ b/resources/views/icons/codecademy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/codeigniter.blade.php b/resources/views/icons/codeigniter.blade.php new file mode 100644 index 0000000..8476391 --- /dev/null +++ b/resources/views/icons/codeigniter.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/codemirror.blade.php b/resources/views/icons/codemirror.blade.php new file mode 100644 index 0000000..ae187be --- /dev/null +++ b/resources/views/icons/codemirror.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/codepen.blade.php b/resources/views/icons/codepen.blade.php new file mode 100644 index 0000000..0b3ea96 --- /dev/null +++ b/resources/views/icons/codepen.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/codingninjas.blade.php b/resources/views/icons/codingninjas.blade.php new file mode 100644 index 0000000..bb8ba04 --- /dev/null +++ b/resources/views/icons/codingninjas.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cognizant.blade.php b/resources/views/icons/cognizant.blade.php new file mode 100644 index 0000000..9c02485 --- /dev/null +++ b/resources/views/icons/cognizant.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/composer.blade.php b/resources/views/icons/composer.blade.php new file mode 100644 index 0000000..9453a64 --- /dev/null +++ b/resources/views/icons/composer.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/coreldraw.blade.php b/resources/views/icons/coreldraw.blade.php new file mode 100644 index 0000000..64e1b43 --- /dev/null +++ b/resources/views/icons/coreldraw.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/coursera.blade.php b/resources/views/icons/coursera.blade.php new file mode 100644 index 0000000..555ab74 --- /dev/null +++ b/resources/views/icons/coursera.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cpanel.blade.php b/resources/views/icons/cpanel.blade.php new file mode 100644 index 0000000..abbe29a --- /dev/null +++ b/resources/views/icons/cpanel.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cplusplus.blade.php b/resources/views/icons/cplusplus.blade.php new file mode 100644 index 0000000..452fc5a --- /dev/null +++ b/resources/views/icons/cplusplus.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/createreactapp.blade.php b/resources/views/icons/createreactapp.blade.php new file mode 100644 index 0000000..533e8c5 --- /dev/null +++ b/resources/views/icons/createreactapp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/creativecommons.blade.php b/resources/views/icons/creativecommons.blade.php new file mode 100644 index 0000000..871c3da --- /dev/null +++ b/resources/views/icons/creativecommons.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/crystal.blade.php b/resources/views/icons/crystal.blade.php new file mode 100644 index 0000000..186e184 --- /dev/null +++ b/resources/views/icons/crystal.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/css3.blade.php b/resources/views/icons/css3.blade.php new file mode 100644 index 0000000..5e69b39 --- /dev/null +++ b/resources/views/icons/css3.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/curl.blade.php b/resources/views/icons/curl.blade.php new file mode 100644 index 0000000..3d21f1e --- /dev/null +++ b/resources/views/icons/curl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/cypress.blade.php b/resources/views/icons/cypress.blade.php new file mode 100644 index 0000000..81cc29e --- /dev/null +++ b/resources/views/icons/cypress.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/d3dotjs.blade.php b/resources/views/icons/d3dotjs.blade.php new file mode 100644 index 0000000..1fadb1b --- /dev/null +++ b/resources/views/icons/d3dotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/daisyui.blade.php b/resources/views/icons/daisyui.blade.php new file mode 100644 index 0000000..c7820dc --- /dev/null +++ b/resources/views/icons/daisyui.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dart.blade.php b/resources/views/icons/dart.blade.php new file mode 100644 index 0000000..e0e6321 --- /dev/null +++ b/resources/views/icons/dart.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dash.blade.php b/resources/views/icons/dash.blade.php new file mode 100644 index 0000000..c5ec16d --- /dev/null +++ b/resources/views/icons/dash.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dassaultsystemes.blade.php b/resources/views/icons/dassaultsystemes.blade.php new file mode 100644 index 0000000..8647428 --- /dev/null +++ b/resources/views/icons/dassaultsystemes.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/datacamp.blade.php b/resources/views/icons/datacamp.blade.php new file mode 100644 index 0000000..3c73062 --- /dev/null +++ b/resources/views/icons/datacamp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/datadog.blade.php b/resources/views/icons/datadog.blade.php new file mode 100644 index 0000000..100a656 --- /dev/null +++ b/resources/views/icons/datadog.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/datagrip.blade.php b/resources/views/icons/datagrip.blade.php new file mode 100644 index 0000000..f193edb --- /dev/null +++ b/resources/views/icons/datagrip.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/davinciresolve.blade.php b/resources/views/icons/davinciresolve.blade.php new file mode 100644 index 0000000..3892331 --- /dev/null +++ b/resources/views/icons/davinciresolve.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dbeaver.blade.php b/resources/views/icons/dbeaver.blade.php new file mode 100644 index 0000000..e408dcd --- /dev/null +++ b/resources/views/icons/dbeaver.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dcentertainment.blade.php b/resources/views/icons/dcentertainment.blade.php new file mode 100644 index 0000000..a6e592d --- /dev/null +++ b/resources/views/icons/dcentertainment.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/debian.blade.php b/resources/views/icons/debian.blade.php new file mode 100644 index 0000000..bcd0cc3 --- /dev/null +++ b/resources/views/icons/debian.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dell.blade.php b/resources/views/icons/dell.blade.php new file mode 100644 index 0000000..4b2687c --- /dev/null +++ b/resources/views/icons/dell.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/diagramsdotnet.blade.php b/resources/views/icons/diagramsdotnet.blade.php new file mode 100644 index 0000000..a329957 --- /dev/null +++ b/resources/views/icons/diagramsdotnet.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/digitalocean.blade.php b/resources/views/icons/digitalocean.blade.php new file mode 100644 index 0000000..84fe84b --- /dev/null +++ b/resources/views/icons/digitalocean.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dinersclub.blade.php b/resources/views/icons/dinersclub.blade.php new file mode 100644 index 0000000..ce84164 --- /dev/null +++ b/resources/views/icons/dinersclub.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/discord.blade.php b/resources/views/icons/discord.blade.php new file mode 100644 index 0000000..d71458a --- /dev/null +++ b/resources/views/icons/discord.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/django.blade.php b/resources/views/icons/django.blade.php new file mode 100644 index 0000000..ab6343e --- /dev/null +++ b/resources/views/icons/django.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dji.blade.php b/resources/views/icons/dji.blade.php new file mode 100644 index 0000000..ea13e1c --- /dev/null +++ b/resources/views/icons/dji.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/docker.blade.php b/resources/views/icons/docker.blade.php new file mode 100644 index 0000000..0353ea4 --- /dev/null +++ b/resources/views/icons/docker.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dolby.blade.php b/resources/views/icons/dolby.blade.php new file mode 100644 index 0000000..d137c27 --- /dev/null +++ b/resources/views/icons/dolby.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dotenv.blade.php b/resources/views/icons/dotenv.blade.php new file mode 100644 index 0000000..6664da3 --- /dev/null +++ b/resources/views/icons/dotenv.blade.php @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/resources/views/icons/dotnet.blade.php b/resources/views/icons/dotnet.blade.php new file mode 100644 index 0000000..7ab643c --- /dev/null +++ b/resources/views/icons/dotnet.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dropbox.blade.php b/resources/views/icons/dropbox.blade.php new file mode 100644 index 0000000..7995ca0 --- /dev/null +++ b/resources/views/icons/dropbox.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/dts.blade.php b/resources/views/icons/dts.blade.php new file mode 100644 index 0000000..fff4828 --- /dev/null +++ b/resources/views/icons/dts.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ducati.blade.php b/resources/views/icons/ducati.blade.php new file mode 100644 index 0000000..6b74961 --- /dev/null +++ b/resources/views/icons/ducati.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/duckduckgo.blade.php b/resources/views/icons/duckduckgo.blade.php new file mode 100644 index 0000000..de55df8 --- /dev/null +++ b/resources/views/icons/duckduckgo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ea.blade.php b/resources/views/icons/ea.blade.php new file mode 100644 index 0000000..a45255c --- /dev/null +++ b/resources/views/icons/ea.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/eclipseide.blade.php b/resources/views/icons/eclipseide.blade.php new file mode 100644 index 0000000..6f922d0 --- /dev/null +++ b/resources/views/icons/eclipseide.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/editorconfig.blade.php b/resources/views/icons/editorconfig.blade.php new file mode 100644 index 0000000..f6c6111 --- /dev/null +++ b/resources/views/icons/editorconfig.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/educative.blade.php b/resources/views/icons/educative.blade.php new file mode 100644 index 0000000..fbc4e4f --- /dev/null +++ b/resources/views/icons/educative.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/edx.blade.php b/resources/views/icons/edx.blade.php new file mode 100644 index 0000000..aa2cee8 --- /dev/null +++ b/resources/views/icons/edx.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/egghead.blade.php b/resources/views/icons/egghead.blade.php new file mode 100644 index 0000000..4f8ffb4 --- /dev/null +++ b/resources/views/icons/egghead.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/electron.blade.php b/resources/views/icons/electron.blade.php new file mode 100644 index 0000000..35b0e6e --- /dev/null +++ b/resources/views/icons/electron.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/elementor.blade.php b/resources/views/icons/elementor.blade.php new file mode 100644 index 0000000..64b4b24 --- /dev/null +++ b/resources/views/icons/elementor.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/envato.blade.php b/resources/views/icons/envato.blade.php new file mode 100644 index 0000000..935fce5 --- /dev/null +++ b/resources/views/icons/envato.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/epson.blade.php b/resources/views/icons/epson.blade.php new file mode 100644 index 0000000..96d4ee5 --- /dev/null +++ b/resources/views/icons/epson.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/eslint.blade.php b/resources/views/icons/eslint.blade.php new file mode 100644 index 0000000..604db58 --- /dev/null +++ b/resources/views/icons/eslint.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ethereum.blade.php b/resources/views/icons/ethereum.blade.php new file mode 100644 index 0000000..6d96749 --- /dev/null +++ b/resources/views/icons/ethereum.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/eventbrite.blade.php b/resources/views/icons/eventbrite.blade.php new file mode 100644 index 0000000..98fe0d0 --- /dev/null +++ b/resources/views/icons/eventbrite.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/evernote.blade.php b/resources/views/icons/evernote.blade.php new file mode 100644 index 0000000..904e292 --- /dev/null +++ b/resources/views/icons/evernote.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/exercism.blade.php b/resources/views/icons/exercism.blade.php new file mode 100644 index 0000000..925a6aa --- /dev/null +++ b/resources/views/icons/exercism.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/expo.blade.php b/resources/views/icons/expo.blade.php new file mode 100644 index 0000000..6f46f87 --- /dev/null +++ b/resources/views/icons/expo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/express.blade.php b/resources/views/icons/express.blade.php new file mode 100644 index 0000000..afe3f85 --- /dev/null +++ b/resources/views/icons/express.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/f1.blade.php b/resources/views/icons/f1.blade.php new file mode 100644 index 0000000..f96a6ab --- /dev/null +++ b/resources/views/icons/f1.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/facebook.blade.php b/resources/views/icons/facebook.blade.php new file mode 100644 index 0000000..8b32c7f --- /dev/null +++ b/resources/views/icons/facebook.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/facebooklive.blade.php b/resources/views/icons/facebooklive.blade.php new file mode 100644 index 0000000..253f2aa --- /dev/null +++ b/resources/views/icons/facebooklive.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fastapi.blade.php b/resources/views/icons/fastapi.blade.php new file mode 100644 index 0000000..db43b3e --- /dev/null +++ b/resources/views/icons/fastapi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fedex.blade.php b/resources/views/icons/fedex.blade.php new file mode 100644 index 0000000..9112ae4 --- /dev/null +++ b/resources/views/icons/fedex.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ferrari.blade.php b/resources/views/icons/ferrari.blade.php new file mode 100644 index 0000000..8e0a9dc --- /dev/null +++ b/resources/views/icons/ferrari.blade.php @@ -0,0 +1,4 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fi.blade.php b/resources/views/icons/fi.blade.php new file mode 100644 index 0000000..e0b4b1a --- /dev/null +++ b/resources/views/icons/fi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fiat.blade.php b/resources/views/icons/fiat.blade.php new file mode 100644 index 0000000..62e002f --- /dev/null +++ b/resources/views/icons/fiat.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fifa.blade.php b/resources/views/icons/fifa.blade.php new file mode 100644 index 0000000..c09a123 --- /dev/null +++ b/resources/views/icons/fifa.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/figma.blade.php b/resources/views/icons/figma.blade.php new file mode 100644 index 0000000..0f4e2e0 --- /dev/null +++ b/resources/views/icons/figma.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fila.blade.php b/resources/views/icons/fila.blade.php new file mode 100644 index 0000000..cc04984 --- /dev/null +++ b/resources/views/icons/fila.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/filezilla.blade.php b/resources/views/icons/filezilla.blade.php new file mode 100644 index 0000000..eac5539 --- /dev/null +++ b/resources/views/icons/filezilla.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/firefox.blade.php b/resources/views/icons/firefox.blade.php new file mode 100644 index 0000000..c5b7749 --- /dev/null +++ b/resources/views/icons/firefox.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/firefoxbrowser.blade.php b/resources/views/icons/firefoxbrowser.blade.php new file mode 100644 index 0000000..3ec4697 --- /dev/null +++ b/resources/views/icons/firefoxbrowser.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fiverr.blade.php b/resources/views/icons/fiverr.blade.php new file mode 100644 index 0000000..d1c7d88 --- /dev/null +++ b/resources/views/icons/fiverr.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/flask.blade.php b/resources/views/icons/flask.blade.php new file mode 100644 index 0000000..b37a1ce --- /dev/null +++ b/resources/views/icons/flask.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/flipboard.blade.php b/resources/views/icons/flipboard.blade.php new file mode 100644 index 0000000..af7af4e --- /dev/null +++ b/resources/views/icons/flipboard.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/flipkart.blade.php b/resources/views/icons/flipkart.blade.php new file mode 100644 index 0000000..09acc36 --- /dev/null +++ b/resources/views/icons/flipkart.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/flutter.blade.php b/resources/views/icons/flutter.blade.php new file mode 100644 index 0000000..7f17c33 --- /dev/null +++ b/resources/views/icons/flutter.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/fontawesome.blade.php b/resources/views/icons/fontawesome.blade.php new file mode 100644 index 0000000..84d71bb --- /dev/null +++ b/resources/views/icons/fontawesome.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ford.blade.php b/resources/views/icons/ford.blade.php new file mode 100644 index 0000000..5553b4d --- /dev/null +++ b/resources/views/icons/ford.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/framework7.blade.php b/resources/views/icons/framework7.blade.php new file mode 100644 index 0000000..4e160ec --- /dev/null +++ b/resources/views/icons/framework7.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/freelancer.blade.php b/resources/views/icons/freelancer.blade.php new file mode 100644 index 0000000..9481150 --- /dev/null +++ b/resources/views/icons/freelancer.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/freepik.blade.php b/resources/views/icons/freepik.blade.php new file mode 100644 index 0000000..efd82d4 --- /dev/null +++ b/resources/views/icons/freepik.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gameloft.blade.php b/resources/views/icons/gameloft.blade.php new file mode 100644 index 0000000..1d03cec --- /dev/null +++ b/resources/views/icons/gameloft.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/giphy.blade.php b/resources/views/icons/giphy.blade.php new file mode 100644 index 0000000..34deb10 --- /dev/null +++ b/resources/views/icons/giphy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/git.blade.php b/resources/views/icons/git.blade.php new file mode 100644 index 0000000..01f535c --- /dev/null +++ b/resources/views/icons/git.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gitbook.blade.php b/resources/views/icons/gitbook.blade.php new file mode 100644 index 0000000..d8e940b --- /dev/null +++ b/resources/views/icons/gitbook.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/github.blade.php b/resources/views/icons/github.blade.php new file mode 100644 index 0000000..016e8f0 --- /dev/null +++ b/resources/views/icons/github.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/githubcopilot.blade.php b/resources/views/icons/githubcopilot.blade.php new file mode 100644 index 0000000..d0a137d --- /dev/null +++ b/resources/views/icons/githubcopilot.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/githubpages.blade.php b/resources/views/icons/githubpages.blade.php new file mode 100644 index 0000000..4d94800 --- /dev/null +++ b/resources/views/icons/githubpages.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/githubsponsors.blade.php b/resources/views/icons/githubsponsors.blade.php new file mode 100644 index 0000000..6f4eb9e --- /dev/null +++ b/resources/views/icons/githubsponsors.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gitlab.blade.php b/resources/views/icons/gitlab.blade.php new file mode 100644 index 0000000..aa3df1c --- /dev/null +++ b/resources/views/icons/gitlab.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gnubash.blade.php b/resources/views/icons/gnubash.blade.php new file mode 100644 index 0000000..277f7e2 --- /dev/null +++ b/resources/views/icons/gnubash.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/go.blade.php b/resources/views/icons/go.blade.php new file mode 100644 index 0000000..861f4ed --- /dev/null +++ b/resources/views/icons/go.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/godaddy.blade.php b/resources/views/icons/godaddy.blade.php new file mode 100644 index 0000000..9e2a62b --- /dev/null +++ b/resources/views/icons/godaddy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/goland.blade.php b/resources/views/icons/goland.blade.php new file mode 100644 index 0000000..39da9fc --- /dev/null +++ b/resources/views/icons/goland.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/google.blade.php b/resources/views/icons/google.blade.php new file mode 100644 index 0000000..46d809d --- /dev/null +++ b/resources/views/icons/google.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleads.blade.php b/resources/views/icons/googleads.blade.php new file mode 100644 index 0000000..bc33adf --- /dev/null +++ b/resources/views/icons/googleads.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleadsense.blade.php b/resources/views/icons/googleadsense.blade.php new file mode 100644 index 0000000..50dcd47 --- /dev/null +++ b/resources/views/icons/googleadsense.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleanalytics.blade.php b/resources/views/icons/googleanalytics.blade.php new file mode 100644 index 0000000..4acdd26 --- /dev/null +++ b/resources/views/icons/googleanalytics.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleassistant.blade.php b/resources/views/icons/googleassistant.blade.php new file mode 100644 index 0000000..d659a06 --- /dev/null +++ b/resources/views/icons/googleassistant.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlebigquery.blade.php b/resources/views/icons/googlebigquery.blade.php new file mode 100644 index 0000000..018f921 --- /dev/null +++ b/resources/views/icons/googlebigquery.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlecalendar.blade.php b/resources/views/icons/googlecalendar.blade.php new file mode 100644 index 0000000..ef4a980 --- /dev/null +++ b/resources/views/icons/googlecalendar.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlechat.blade.php b/resources/views/icons/googlechat.blade.php new file mode 100644 index 0000000..fecaa77 --- /dev/null +++ b/resources/views/icons/googlechat.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlechrome.blade.php b/resources/views/icons/googlechrome.blade.php new file mode 100644 index 0000000..32d4a8f --- /dev/null +++ b/resources/views/icons/googlechrome.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleclassroom.blade.php b/resources/views/icons/googleclassroom.blade.php new file mode 100644 index 0000000..dbd33b7 --- /dev/null +++ b/resources/views/icons/googleclassroom.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlecloud.blade.php b/resources/views/icons/googlecloud.blade.php new file mode 100644 index 0000000..cbbd2e8 --- /dev/null +++ b/resources/views/icons/googlecloud.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlecolab.blade.php b/resources/views/icons/googlecolab.blade.php new file mode 100644 index 0000000..8f72929 --- /dev/null +++ b/resources/views/icons/googlecolab.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googledocs.blade.php b/resources/views/icons/googledocs.blade.php new file mode 100644 index 0000000..a39e673 --- /dev/null +++ b/resources/views/icons/googledocs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googledrive.blade.php b/resources/views/icons/googledrive.blade.php new file mode 100644 index 0000000..e4e119c --- /dev/null +++ b/resources/views/icons/googledrive.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleearth.blade.php b/resources/views/icons/googleearth.blade.php new file mode 100644 index 0000000..f12c19c --- /dev/null +++ b/resources/views/icons/googleearth.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlefonts.blade.php b/resources/views/icons/googlefonts.blade.php new file mode 100644 index 0000000..05ae616 --- /dev/null +++ b/resources/views/icons/googlefonts.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleforms.blade.php b/resources/views/icons/googleforms.blade.php new file mode 100644 index 0000000..8cc16d4 --- /dev/null +++ b/resources/views/icons/googleforms.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlegemini.blade.php b/resources/views/icons/googlegemini.blade.php new file mode 100644 index 0000000..9dbdb1b --- /dev/null +++ b/resources/views/icons/googlegemini.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlehome.blade.php b/resources/views/icons/googlehome.blade.php new file mode 100644 index 0000000..3a2f5b9 --- /dev/null +++ b/resources/views/icons/googlehome.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlekeep.blade.php b/resources/views/icons/googlekeep.blade.php new file mode 100644 index 0000000..696d8ac --- /dev/null +++ b/resources/views/icons/googlekeep.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlelens.blade.php b/resources/views/icons/googlelens.blade.php new file mode 100644 index 0000000..46bd605 --- /dev/null +++ b/resources/views/icons/googlelens.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlemaps.blade.php b/resources/views/icons/googlemaps.blade.php new file mode 100644 index 0000000..ddba10f --- /dev/null +++ b/resources/views/icons/googlemaps.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlemeet.blade.php b/resources/views/icons/googlemeet.blade.php new file mode 100644 index 0000000..05600be --- /dev/null +++ b/resources/views/icons/googlemeet.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlenews.blade.php b/resources/views/icons/googlenews.blade.php new file mode 100644 index 0000000..10bedf9 --- /dev/null +++ b/resources/views/icons/googlenews.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlepay.blade.php b/resources/views/icons/googlepay.blade.php new file mode 100644 index 0000000..5692ca9 --- /dev/null +++ b/resources/views/icons/googlepay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlephotos.blade.php b/resources/views/icons/googlephotos.blade.php new file mode 100644 index 0000000..ca7a1c5 --- /dev/null +++ b/resources/views/icons/googlephotos.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleplay.blade.php b/resources/views/icons/googleplay.blade.php new file mode 100644 index 0000000..c1c31b3 --- /dev/null +++ b/resources/views/icons/googleplay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlesearchconsole.blade.php b/resources/views/icons/googlesearchconsole.blade.php new file mode 100644 index 0000000..e410593 --- /dev/null +++ b/resources/views/icons/googlesearchconsole.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlesheets.blade.php b/resources/views/icons/googlesheets.blade.php new file mode 100644 index 0000000..0107a6c --- /dev/null +++ b/resources/views/icons/googlesheets.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googleslides.blade.php b/resources/views/icons/googleslides.blade.php new file mode 100644 index 0000000..d2b52c4 --- /dev/null +++ b/resources/views/icons/googleslides.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googlestreetview.blade.php b/resources/views/icons/googlestreetview.blade.php new file mode 100644 index 0000000..2995648 --- /dev/null +++ b/resources/views/icons/googlestreetview.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googletagmanager.blade.php b/resources/views/icons/googletagmanager.blade.php new file mode 100644 index 0000000..fe34555 --- /dev/null +++ b/resources/views/icons/googletagmanager.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googletasks.blade.php b/resources/views/icons/googletasks.blade.php new file mode 100644 index 0000000..24009c6 --- /dev/null +++ b/resources/views/icons/googletasks.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/googletranslate.blade.php b/resources/views/icons/googletranslate.blade.php new file mode 100644 index 0000000..7a49543 --- /dev/null +++ b/resources/views/icons/googletranslate.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gradle.blade.php b/resources/views/icons/gradle.blade.php new file mode 100644 index 0000000..65dc18d --- /dev/null +++ b/resources/views/icons/gradle.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gradleplaypublisher.blade.php b/resources/views/icons/gradleplaypublisher.blade.php new file mode 100644 index 0000000..e0af293 --- /dev/null +++ b/resources/views/icons/gradleplaypublisher.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/grapheneos.blade.php b/resources/views/icons/grapheneos.blade.php new file mode 100644 index 0000000..0da0c13 --- /dev/null +++ b/resources/views/icons/grapheneos.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/graphql.blade.php b/resources/views/icons/graphql.blade.php new file mode 100644 index 0000000..486b91f --- /dev/null +++ b/resources/views/icons/graphql.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gravatar.blade.php b/resources/views/icons/gravatar.blade.php new file mode 100644 index 0000000..28b3c4b --- /dev/null +++ b/resources/views/icons/gravatar.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/greatlearning.blade.php b/resources/views/icons/greatlearning.blade.php new file mode 100644 index 0000000..60c4a99 --- /dev/null +++ b/resources/views/icons/greatlearning.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/greensock.blade.php b/resources/views/icons/greensock.blade.php new file mode 100644 index 0000000..467b5ed --- /dev/null +++ b/resources/views/icons/greensock.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gulp.blade.php b/resources/views/icons/gulp.blade.php new file mode 100644 index 0000000..0ca52ba --- /dev/null +++ b/resources/views/icons/gulp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/gumroad.blade.php b/resources/views/icons/gumroad.blade.php new file mode 100644 index 0000000..9bde13a --- /dev/null +++ b/resources/views/icons/gumroad.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/handm.blade.php b/resources/views/icons/handm.blade.php new file mode 100644 index 0000000..f90ceea --- /dev/null +++ b/resources/views/icons/handm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hbo.blade.php b/resources/views/icons/hbo.blade.php new file mode 100644 index 0000000..7823120 --- /dev/null +++ b/resources/views/icons/hbo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hcl.blade.php b/resources/views/icons/hcl.blade.php new file mode 100644 index 0000000..64e9a02 --- /dev/null +++ b/resources/views/icons/hcl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hdfcbank.blade.php b/resources/views/icons/hdfcbank.blade.php new file mode 100644 index 0000000..b56cba3 --- /dev/null +++ b/resources/views/icons/hdfcbank.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/headlessui.blade.php b/resources/views/icons/headlessui.blade.php new file mode 100644 index 0000000..0a2d4fe --- /dev/null +++ b/resources/views/icons/headlessui.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/heroku.blade.php b/resources/views/icons/heroku.blade.php new file mode 100644 index 0000000..e0170c2 --- /dev/null +++ b/resources/views/icons/heroku.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hitachi.blade.php b/resources/views/icons/hitachi.blade.php new file mode 100644 index 0000000..32eac0d --- /dev/null +++ b/resources/views/icons/hitachi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/honda.blade.php b/resources/views/icons/honda.blade.php new file mode 100644 index 0000000..a09548b --- /dev/null +++ b/resources/views/icons/honda.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hostinger.blade.php b/resources/views/icons/hostinger.blade.php new file mode 100644 index 0000000..28534d8 --- /dev/null +++ b/resources/views/icons/hostinger.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hp.blade.php b/resources/views/icons/hp.blade.php new file mode 100644 index 0000000..c0314bb --- /dev/null +++ b/resources/views/icons/hp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hsbc.blade.php b/resources/views/icons/hsbc.blade.php new file mode 100644 index 0000000..8da38b0 --- /dev/null +++ b/resources/views/icons/hsbc.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/html5.blade.php b/resources/views/icons/html5.blade.php new file mode 100644 index 0000000..df4f90e --- /dev/null +++ b/resources/views/icons/html5.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/huawei.blade.php b/resources/views/icons/huawei.blade.php new file mode 100644 index 0000000..51dc444 --- /dev/null +++ b/resources/views/icons/huawei.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hubspot.blade.php b/resources/views/icons/hubspot.blade.php new file mode 100644 index 0000000..187aa74 --- /dev/null +++ b/resources/views/icons/hubspot.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hugo.blade.php b/resources/views/icons/hugo.blade.php new file mode 100644 index 0000000..790b3ac --- /dev/null +++ b/resources/views/icons/hugo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/hyundai.blade.php b/resources/views/icons/hyundai.blade.php new file mode 100644 index 0000000..72702ad --- /dev/null +++ b/resources/views/icons/hyundai.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/iata.blade.php b/resources/views/icons/iata.blade.php new file mode 100644 index 0000000..658e63f --- /dev/null +++ b/resources/views/icons/iata.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/icicibank.blade.php b/resources/views/icons/icicibank.blade.php new file mode 100644 index 0000000..fcb4d84 --- /dev/null +++ b/resources/views/icons/icicibank.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/iconfinder.blade.php b/resources/views/icons/iconfinder.blade.php new file mode 100644 index 0000000..956c116 --- /dev/null +++ b/resources/views/icons/iconfinder.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/iconify.blade.php b/resources/views/icons/iconify.blade.php new file mode 100644 index 0000000..4400ab8 --- /dev/null +++ b/resources/views/icons/iconify.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/iconjar.blade.php b/resources/views/icons/iconjar.blade.php new file mode 100644 index 0000000..933576a --- /dev/null +++ b/resources/views/icons/iconjar.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/icons8.blade.php b/resources/views/icons/icons8.blade.php new file mode 100644 index 0000000..1fd1207 --- /dev/null +++ b/resources/views/icons/icons8.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ikea.blade.php b/resources/views/icons/ikea.blade.php new file mode 100644 index 0000000..08928ab --- /dev/null +++ b/resources/views/icons/ikea.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/imdb.blade.php b/resources/views/icons/imdb.blade.php new file mode 100644 index 0000000..6e0e9d3 --- /dev/null +++ b/resources/views/icons/imdb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/imessage.blade.php b/resources/views/icons/imessage.blade.php new file mode 100644 index 0000000..f2b8052 --- /dev/null +++ b/resources/views/icons/imessage.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/indeed.blade.php b/resources/views/icons/indeed.blade.php new file mode 100644 index 0000000..e502796 --- /dev/null +++ b/resources/views/icons/indeed.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/indigo.blade.php b/resources/views/icons/indigo.blade.php new file mode 100644 index 0000000..7aff307 --- /dev/null +++ b/resources/views/icons/indigo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/inertia.blade.php b/resources/views/icons/inertia.blade.php new file mode 100644 index 0000000..7377a96 --- /dev/null +++ b/resources/views/icons/inertia.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/infosys.blade.php b/resources/views/icons/infosys.blade.php new file mode 100644 index 0000000..ce61f1d --- /dev/null +++ b/resources/views/icons/infosys.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/instagram.blade.php b/resources/views/icons/instagram.blade.php new file mode 100644 index 0000000..d91a922 --- /dev/null +++ b/resources/views/icons/instagram.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/intel.blade.php b/resources/views/icons/intel.blade.php new file mode 100644 index 0000000..27938f6 --- /dev/null +++ b/resources/views/icons/intel.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/intellijidea.blade.php b/resources/views/icons/intellijidea.blade.php new file mode 100644 index 0000000..bd60332 --- /dev/null +++ b/resources/views/icons/intellijidea.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/intercom.blade.php b/resources/views/icons/intercom.blade.php new file mode 100644 index 0000000..ea91684 --- /dev/null +++ b/resources/views/icons/intercom.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ionic.blade.php b/resources/views/icons/ionic.blade.php new file mode 100644 index 0000000..96e6e9e --- /dev/null +++ b/resources/views/icons/ionic.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ios.blade.php b/resources/views/icons/ios.blade.php new file mode 100644 index 0000000..9a4e60c --- /dev/null +++ b/resources/views/icons/ios.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/iterm2.blade.php b/resources/views/icons/iterm2.blade.php new file mode 100644 index 0000000..3eb5967 --- /dev/null +++ b/resources/views/icons/iterm2.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/itunes.blade.php b/resources/views/icons/itunes.blade.php new file mode 100644 index 0000000..3f4480b --- /dev/null +++ b/resources/views/icons/itunes.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jaguar.blade.php b/resources/views/icons/jaguar.blade.php new file mode 100644 index 0000000..e1b41a5 --- /dev/null +++ b/resources/views/icons/jaguar.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jamboard.blade.php b/resources/views/icons/jamboard.blade.php new file mode 100644 index 0000000..d1835a5 --- /dev/null +++ b/resources/views/icons/jamboard.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/javascript.blade.php b/resources/views/icons/javascript.blade.php new file mode 100644 index 0000000..ffc229f --- /dev/null +++ b/resources/views/icons/javascript.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jbl.blade.php b/resources/views/icons/jbl.blade.php new file mode 100644 index 0000000..d6b077e --- /dev/null +++ b/resources/views/icons/jbl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jcb.blade.php b/resources/views/icons/jcb.blade.php new file mode 100644 index 0000000..c32bfb0 --- /dev/null +++ b/resources/views/icons/jcb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jeep.blade.php b/resources/views/icons/jeep.blade.php new file mode 100644 index 0000000..65db695 --- /dev/null +++ b/resources/views/icons/jeep.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jekyll.blade.php b/resources/views/icons/jekyll.blade.php new file mode 100644 index 0000000..a92a4fa --- /dev/null +++ b/resources/views/icons/jekyll.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jenkins.blade.php b/resources/views/icons/jenkins.blade.php new file mode 100644 index 0000000..37d907b --- /dev/null +++ b/resources/views/icons/jenkins.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jest.blade.php b/resources/views/icons/jest.blade.php new file mode 100644 index 0000000..5498795 --- /dev/null +++ b/resources/views/icons/jest.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jetbrains.blade.php b/resources/views/icons/jetbrains.blade.php new file mode 100644 index 0000000..b9fad06 --- /dev/null +++ b/resources/views/icons/jetbrains.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jira.blade.php b/resources/views/icons/jira.blade.php new file mode 100644 index 0000000..5e930d5 --- /dev/null +++ b/resources/views/icons/jira.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jirasoftware.blade.php b/resources/views/icons/jirasoftware.blade.php new file mode 100644 index 0000000..11f0d62 --- /dev/null +++ b/resources/views/icons/jirasoftware.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/johndeere.blade.php b/resources/views/icons/johndeere.blade.php new file mode 100644 index 0000000..a84d90b --- /dev/null +++ b/resources/views/icons/johndeere.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/joomla.blade.php b/resources/views/icons/joomla.blade.php new file mode 100644 index 0000000..f4ab6ca --- /dev/null +++ b/resources/views/icons/joomla.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jpeg.blade.php b/resources/views/icons/jpeg.blade.php new file mode 100644 index 0000000..19cc9dc --- /dev/null +++ b/resources/views/icons/jpeg.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jquery.blade.php b/resources/views/icons/jquery.blade.php new file mode 100644 index 0000000..08a494b --- /dev/null +++ b/resources/views/icons/jquery.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jsdelivr.blade.php b/resources/views/icons/jsdelivr.blade.php new file mode 100644 index 0000000..895b553 --- /dev/null +++ b/resources/views/icons/jsdelivr.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jsfiddle.blade.php b/resources/views/icons/jsfiddle.blade.php new file mode 100644 index 0000000..87dc1f0 --- /dev/null +++ b/resources/views/icons/jsfiddle.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/json.blade.php b/resources/views/icons/json.blade.php new file mode 100644 index 0000000..126f4ca --- /dev/null +++ b/resources/views/icons/json.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jsonwebtokens.blade.php b/resources/views/icons/jsonwebtokens.blade.php new file mode 100644 index 0000000..d36a09c --- /dev/null +++ b/resources/views/icons/jsonwebtokens.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jss.blade.php b/resources/views/icons/jss.blade.php new file mode 100644 index 0000000..8ab88d7 --- /dev/null +++ b/resources/views/icons/jss.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/jupyter.blade.php b/resources/views/icons/jupyter.blade.php new file mode 100644 index 0000000..55fa70d --- /dev/null +++ b/resources/views/icons/jupyter.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kaios.blade.php b/resources/views/icons/kaios.blade.php new file mode 100644 index 0000000..297c421 --- /dev/null +++ b/resources/views/icons/kaios.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kakaotalk.blade.php b/resources/views/icons/kakaotalk.blade.php new file mode 100644 index 0000000..a42eb84 --- /dev/null +++ b/resources/views/icons/kakaotalk.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kalilinux.blade.php b/resources/views/icons/kalilinux.blade.php new file mode 100644 index 0000000..f1cf722 --- /dev/null +++ b/resources/views/icons/kalilinux.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/keepachangelog.blade.php b/resources/views/icons/keepachangelog.blade.php new file mode 100644 index 0000000..4b1d2c2 --- /dev/null +++ b/resources/views/icons/keepachangelog.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kfc.blade.php b/resources/views/icons/kfc.blade.php new file mode 100644 index 0000000..12d24d2 --- /dev/null +++ b/resources/views/icons/kfc.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/khanacademy.blade.php b/resources/views/icons/khanacademy.blade.php new file mode 100644 index 0000000..3e353b7 --- /dev/null +++ b/resources/views/icons/khanacademy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kia.blade.php b/resources/views/icons/kia.blade.php new file mode 100644 index 0000000..0b4a7a9 --- /dev/null +++ b/resources/views/icons/kia.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kingstontechnology.blade.php b/resources/views/icons/kingstontechnology.blade.php new file mode 100644 index 0000000..89f3dc8 --- /dev/null +++ b/resources/views/icons/kingstontechnology.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kodak.blade.php b/resources/views/icons/kodak.blade.php new file mode 100644 index 0000000..4591264 --- /dev/null +++ b/resources/views/icons/kodak.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kofi.blade.php b/resources/views/icons/kofi.blade.php new file mode 100644 index 0000000..07e23ed --- /dev/null +++ b/resources/views/icons/kofi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kotlin.blade.php b/resources/views/icons/kotlin.blade.php new file mode 100644 index 0000000..b8ba9f1 --- /dev/null +++ b/resources/views/icons/kotlin.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/krita.blade.php b/resources/views/icons/krita.blade.php new file mode 100644 index 0000000..916db85 --- /dev/null +++ b/resources/views/icons/krita.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ktm.blade.php b/resources/views/icons/ktm.blade.php new file mode 100644 index 0000000..78b6b71 --- /dev/null +++ b/resources/views/icons/ktm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/kubernetes.blade.php b/resources/views/icons/kubernetes.blade.php new file mode 100644 index 0000000..c047807 --- /dev/null +++ b/resources/views/icons/kubernetes.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/lamborghini.blade.php b/resources/views/icons/lamborghini.blade.php new file mode 100644 index 0000000..8a121e2 --- /dev/null +++ b/resources/views/icons/lamborghini.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/landrover.blade.php b/resources/views/icons/landrover.blade.php new file mode 100644 index 0000000..02acd63 --- /dev/null +++ b/resources/views/icons/landrover.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/laravel.blade.php b/resources/views/icons/laravel.blade.php new file mode 100644 index 0000000..c1b2dea --- /dev/null +++ b/resources/views/icons/laravel.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/laravelhorizon.blade.php b/resources/views/icons/laravelhorizon.blade.php new file mode 100644 index 0000000..8a8081f --- /dev/null +++ b/resources/views/icons/laravelhorizon.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/laravelnova.blade.php b/resources/views/icons/laravelnova.blade.php new file mode 100644 index 0000000..4e61079 --- /dev/null +++ b/resources/views/icons/laravelnova.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/leaflet.blade.php b/resources/views/icons/leaflet.blade.php new file mode 100644 index 0000000..929a67b --- /dev/null +++ b/resources/views/icons/leaflet.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/leetcode.blade.php b/resources/views/icons/leetcode.blade.php new file mode 100644 index 0000000..a50c60f --- /dev/null +++ b/resources/views/icons/leetcode.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/lemonsqueezy.blade.php b/resources/views/icons/lemonsqueezy.blade.php new file mode 100644 index 0000000..f307aa2 --- /dev/null +++ b/resources/views/icons/lemonsqueezy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/lenovo.blade.php b/resources/views/icons/lenovo.blade.php new file mode 100644 index 0000000..d7fc194 --- /dev/null +++ b/resources/views/icons/lenovo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/less.blade.php b/resources/views/icons/less.blade.php new file mode 100644 index 0000000..d7496e4 --- /dev/null +++ b/resources/views/icons/less.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/lg.blade.php b/resources/views/icons/lg.blade.php new file mode 100644 index 0000000..bdc892c --- /dev/null +++ b/resources/views/icons/lg.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/line.blade.php b/resources/views/icons/line.blade.php new file mode 100644 index 0000000..2822af5 --- /dev/null +++ b/resources/views/icons/line.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/linkedin.blade.php b/resources/views/icons/linkedin.blade.php new file mode 100644 index 0000000..25c7fc0 --- /dev/null +++ b/resources/views/icons/linkedin.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/linktree.blade.php b/resources/views/icons/linktree.blade.php new file mode 100644 index 0000000..cda5cb7 --- /dev/null +++ b/resources/views/icons/linktree.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/linux.blade.php b/resources/views/icons/linux.blade.php new file mode 100644 index 0000000..645596c --- /dev/null +++ b/resources/views/icons/linux.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/linuxfoundation.blade.php b/resources/views/icons/linuxfoundation.blade.php new file mode 100644 index 0000000..cd81a30 --- /dev/null +++ b/resources/views/icons/linuxfoundation.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/litecoin.blade.php b/resources/views/icons/litecoin.blade.php new file mode 100644 index 0000000..886b4e5 --- /dev/null +++ b/resources/views/icons/litecoin.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/livewire.blade.php b/resources/views/icons/livewire.blade.php new file mode 100644 index 0000000..a871f10 --- /dev/null +++ b/resources/views/icons/livewire.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/logitech.blade.php b/resources/views/icons/logitech.blade.php new file mode 100644 index 0000000..e883fbe --- /dev/null +++ b/resources/views/icons/logitech.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/macos.blade.php b/resources/views/icons/macos.blade.php new file mode 100644 index 0000000..e9221b2 --- /dev/null +++ b/resources/views/icons/macos.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/magento.blade.php b/resources/views/icons/magento.blade.php new file mode 100644 index 0000000..736406b --- /dev/null +++ b/resources/views/icons/magento.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mahindra.blade.php b/resources/views/icons/mahindra.blade.php new file mode 100644 index 0000000..ad5eca3 --- /dev/null +++ b/resources/views/icons/mahindra.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mailchimp.blade.php b/resources/views/icons/mailchimp.blade.php new file mode 100644 index 0000000..6b9485b --- /dev/null +++ b/resources/views/icons/mailchimp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mailtrap.blade.php b/resources/views/icons/mailtrap.blade.php new file mode 100644 index 0000000..c97eb31 --- /dev/null +++ b/resources/views/icons/mailtrap.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mamp.blade.php b/resources/views/icons/mamp.blade.php new file mode 100644 index 0000000..ffaab33 --- /dev/null +++ b/resources/views/icons/mamp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mariadb.blade.php b/resources/views/icons/mariadb.blade.php new file mode 100644 index 0000000..acdf3b8 --- /dev/null +++ b/resources/views/icons/mariadb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mariadbfoundation.blade.php b/resources/views/icons/mariadbfoundation.blade.php new file mode 100644 index 0000000..9268d67 --- /dev/null +++ b/resources/views/icons/mariadbfoundation.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/markdown.blade.php b/resources/views/icons/markdown.blade.php new file mode 100644 index 0000000..4166bb5 --- /dev/null +++ b/resources/views/icons/markdown.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mastercard.blade.php b/resources/views/icons/mastercard.blade.php new file mode 100644 index 0000000..1cd8141 --- /dev/null +++ b/resources/views/icons/mastercard.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mastodon.blade.php b/resources/views/icons/mastodon.blade.php new file mode 100644 index 0000000..bde854e --- /dev/null +++ b/resources/views/icons/mastodon.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/materialdesign.blade.php b/resources/views/icons/materialdesign.blade.php new file mode 100644 index 0000000..1410b4d --- /dev/null +++ b/resources/views/icons/materialdesign.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/materialformkdocs.blade.php b/resources/views/icons/materialformkdocs.blade.php new file mode 100644 index 0000000..06c45ef --- /dev/null +++ b/resources/views/icons/materialformkdocs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mcafee.blade.php b/resources/views/icons/mcafee.blade.php new file mode 100644 index 0000000..8fe0a22 --- /dev/null +++ b/resources/views/icons/mcafee.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mcdonalds.blade.php b/resources/views/icons/mcdonalds.blade.php new file mode 100644 index 0000000..5f9ac00 --- /dev/null +++ b/resources/views/icons/mcdonalds.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mdnwebdocs.blade.php b/resources/views/icons/mdnwebdocs.blade.php new file mode 100644 index 0000000..741f103 --- /dev/null +++ b/resources/views/icons/mdnwebdocs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/medium.blade.php b/resources/views/icons/medium.blade.php new file mode 100644 index 0000000..121ded3 --- /dev/null +++ b/resources/views/icons/medium.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/meetup.blade.php b/resources/views/icons/meetup.blade.php new file mode 100644 index 0000000..33747dc --- /dev/null +++ b/resources/views/icons/meetup.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mega.blade.php b/resources/views/icons/mega.blade.php new file mode 100644 index 0000000..4712e8d --- /dev/null +++ b/resources/views/icons/mega.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mercedes.blade.php b/resources/views/icons/mercedes.blade.php new file mode 100644 index 0000000..c631f40 --- /dev/null +++ b/resources/views/icons/mercedes.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/messenger.blade.php b/resources/views/icons/messenger.blade.php new file mode 100644 index 0000000..4b15061 --- /dev/null +++ b/resources/views/icons/messenger.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/meta.blade.php b/resources/views/icons/meta.blade.php new file mode 100644 index 0000000..9d78647 --- /dev/null +++ b/resources/views/icons/meta.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mg.blade.php b/resources/views/icons/mg.blade.php new file mode 100644 index 0000000..2d5d43c --- /dev/null +++ b/resources/views/icons/mg.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mini.blade.php b/resources/views/icons/mini.blade.php new file mode 100644 index 0000000..28cc0fa --- /dev/null +++ b/resources/views/icons/mini.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mitsubishi.blade.php b/resources/views/icons/mitsubishi.blade.php new file mode 100644 index 0000000..1847793 --- /dev/null +++ b/resources/views/icons/mitsubishi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mongodb.blade.php b/resources/views/icons/mongodb.blade.php new file mode 100644 index 0000000..4988c63 --- /dev/null +++ b/resources/views/icons/mongodb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/motorola.blade.php b/resources/views/icons/motorola.blade.php new file mode 100644 index 0000000..0ef9184 --- /dev/null +++ b/resources/views/icons/motorola.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mozilla.blade.php b/resources/views/icons/mozilla.blade.php new file mode 100644 index 0000000..55a41bc --- /dev/null +++ b/resources/views/icons/mozilla.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/msi.blade.php b/resources/views/icons/msi.blade.php new file mode 100644 index 0000000..4c14168 --- /dev/null +++ b/resources/views/icons/msi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mui.blade.php b/resources/views/icons/mui.blade.php new file mode 100644 index 0000000..ef41b7c --- /dev/null +++ b/resources/views/icons/mui.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/mysql.blade.php b/resources/views/icons/mysql.blade.php new file mode 100644 index 0000000..2b89522 --- /dev/null +++ b/resources/views/icons/mysql.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/namecheap.blade.php b/resources/views/icons/namecheap.blade.php new file mode 100644 index 0000000..0906ab8 --- /dev/null +++ b/resources/views/icons/namecheap.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nasa.blade.php b/resources/views/icons/nasa.blade.php new file mode 100644 index 0000000..1dfc93d --- /dev/null +++ b/resources/views/icons/nasa.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nbc.blade.php b/resources/views/icons/nbc.blade.php new file mode 100644 index 0000000..fea2ec6 --- /dev/null +++ b/resources/views/icons/nbc.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/netflix.blade.php b/resources/views/icons/netflix.blade.php new file mode 100644 index 0000000..2551519 --- /dev/null +++ b/resources/views/icons/netflix.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/netlify.blade.php b/resources/views/icons/netlify.blade.php new file mode 100644 index 0000000..e33e6c2 --- /dev/null +++ b/resources/views/icons/netlify.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/newyorktimes.blade.php b/resources/views/icons/newyorktimes.blade.php new file mode 100644 index 0000000..a84247c --- /dev/null +++ b/resources/views/icons/newyorktimes.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nextdotjs.blade.php b/resources/views/icons/nextdotjs.blade.php new file mode 100644 index 0000000..5548448 --- /dev/null +++ b/resources/views/icons/nextdotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nfc.blade.php b/resources/views/icons/nfc.blade.php new file mode 100644 index 0000000..c53eafa --- /dev/null +++ b/resources/views/icons/nfc.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nginx.blade.php b/resources/views/icons/nginx.blade.php new file mode 100644 index 0000000..005d338 --- /dev/null +++ b/resources/views/icons/nginx.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nike.blade.php b/resources/views/icons/nike.blade.php new file mode 100644 index 0000000..3dc1126 --- /dev/null +++ b/resources/views/icons/nike.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nikon.blade.php b/resources/views/icons/nikon.blade.php new file mode 100644 index 0000000..292b602 --- /dev/null +++ b/resources/views/icons/nikon.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nissan.blade.php b/resources/views/icons/nissan.blade.php new file mode 100644 index 0000000..6afc6f2 --- /dev/null +++ b/resources/views/icons/nissan.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nodedotjs.blade.php b/resources/views/icons/nodedotjs.blade.php new file mode 100644 index 0000000..1207227 --- /dev/null +++ b/resources/views/icons/nodedotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nokia.blade.php b/resources/views/icons/nokia.blade.php new file mode 100644 index 0000000..e2bc22a --- /dev/null +++ b/resources/views/icons/nokia.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nordvpn.blade.php b/resources/views/icons/nordvpn.blade.php new file mode 100644 index 0000000..01ce0b4 --- /dev/null +++ b/resources/views/icons/nordvpn.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/notepadplusplus.blade.php b/resources/views/icons/notepadplusplus.blade.php new file mode 100644 index 0000000..38b9476 --- /dev/null +++ b/resources/views/icons/notepadplusplus.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/notion.blade.php b/resources/views/icons/notion.blade.php new file mode 100644 index 0000000..d9d7718 --- /dev/null +++ b/resources/views/icons/notion.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/npm.blade.php b/resources/views/icons/npm.blade.php new file mode 100644 index 0000000..6b0d4a5 --- /dev/null +++ b/resources/views/icons/npm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/numpy.blade.php b/resources/views/icons/numpy.blade.php new file mode 100644 index 0000000..4531455 --- /dev/null +++ b/resources/views/icons/numpy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nuxtdotjs.blade.php b/resources/views/icons/nuxtdotjs.blade.php new file mode 100644 index 0000000..cc783b0 --- /dev/null +++ b/resources/views/icons/nuxtdotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/nvidia.blade.php b/resources/views/icons/nvidia.blade.php new file mode 100644 index 0000000..c6dc6a7 --- /dev/null +++ b/resources/views/icons/nvidia.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/obsstudio.blade.php b/resources/views/icons/obsstudio.blade.php new file mode 100644 index 0000000..0b10d02 --- /dev/null +++ b/resources/views/icons/obsstudio.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/odoo.blade.php b/resources/views/icons/odoo.blade.php new file mode 100644 index 0000000..dc829ea --- /dev/null +++ b/resources/views/icons/odoo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/okcupid.blade.php b/resources/views/icons/okcupid.blade.php new file mode 100644 index 0000000..f0b435a --- /dev/null +++ b/resources/views/icons/okcupid.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/oneplus.blade.php b/resources/views/icons/oneplus.blade.php new file mode 100644 index 0000000..37eea91 --- /dev/null +++ b/resources/views/icons/oneplus.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/openai.blade.php b/resources/views/icons/openai.blade.php new file mode 100644 index 0000000..0850698 --- /dev/null +++ b/resources/views/icons/openai.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/opencollective.blade.php b/resources/views/icons/opencollective.blade.php new file mode 100644 index 0000000..ad3f83d --- /dev/null +++ b/resources/views/icons/opencollective.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/opencv.blade.php b/resources/views/icons/opencv.blade.php new file mode 100644 index 0000000..7755470 --- /dev/null +++ b/resources/views/icons/opencv.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/opengl.blade.php b/resources/views/icons/opengl.blade.php new file mode 100644 index 0000000..5c27b50 --- /dev/null +++ b/resources/views/icons/opengl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/openjdk.blade.php b/resources/views/icons/openjdk.blade.php new file mode 100644 index 0000000..5a7bf6b --- /dev/null +++ b/resources/views/icons/openjdk.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/openjsfoundation.blade.php b/resources/views/icons/openjsfoundation.blade.php new file mode 100644 index 0000000..c962933 --- /dev/null +++ b/resources/views/icons/openjsfoundation.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/opensea.blade.php b/resources/views/icons/opensea.blade.php new file mode 100644 index 0000000..a3d1e4b --- /dev/null +++ b/resources/views/icons/opensea.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/opensourceinitiative.blade.php b/resources/views/icons/opensourceinitiative.blade.php new file mode 100644 index 0000000..57b1ac1 --- /dev/null +++ b/resources/views/icons/opensourceinitiative.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/openssl.blade.php b/resources/views/icons/openssl.blade.php new file mode 100644 index 0000000..ff8a67d --- /dev/null +++ b/resources/views/icons/openssl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/openstreetmap.blade.php b/resources/views/icons/openstreetmap.blade.php new file mode 100644 index 0000000..4c0b7a1 --- /dev/null +++ b/resources/views/icons/openstreetmap.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/openvpn.blade.php b/resources/views/icons/openvpn.blade.php new file mode 100644 index 0000000..6e40e8c --- /dev/null +++ b/resources/views/icons/openvpn.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/opera.blade.php b/resources/views/icons/opera.blade.php new file mode 100644 index 0000000..1096c30 --- /dev/null +++ b/resources/views/icons/opera.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/oppo.blade.php b/resources/views/icons/oppo.blade.php new file mode 100644 index 0000000..d4b8f20 --- /dev/null +++ b/resources/views/icons/oppo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/oracle.blade.php b/resources/views/icons/oracle.blade.php new file mode 100644 index 0000000..6c769e5 --- /dev/null +++ b/resources/views/icons/oracle.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/otto.blade.php b/resources/views/icons/otto.blade.php new file mode 100644 index 0000000..f190313 --- /dev/null +++ b/resources/views/icons/otto.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/oyo.blade.php b/resources/views/icons/oyo.blade.php new file mode 100644 index 0000000..bd29e5d --- /dev/null +++ b/resources/views/icons/oyo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/packagist.blade.php b/resources/views/icons/packagist.blade.php new file mode 100644 index 0000000..84f4051 --- /dev/null +++ b/resources/views/icons/packagist.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/paddle.blade.php b/resources/views/icons/paddle.blade.php new file mode 100644 index 0000000..e695f1c --- /dev/null +++ b/resources/views/icons/paddle.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/paramountplus.blade.php b/resources/views/icons/paramountplus.blade.php new file mode 100644 index 0000000..d6692a6 --- /dev/null +++ b/resources/views/icons/paramountplus.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/paypal.blade.php b/resources/views/icons/paypal.blade.php new file mode 100644 index 0000000..18ea1c1 --- /dev/null +++ b/resources/views/icons/paypal.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/paytm.blade.php b/resources/views/icons/paytm.blade.php new file mode 100644 index 0000000..84ef0a5 --- /dev/null +++ b/resources/views/icons/paytm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/perl.blade.php b/resources/views/icons/perl.blade.php new file mode 100644 index 0000000..9b3fc73 --- /dev/null +++ b/resources/views/icons/perl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pexels.blade.php b/resources/views/icons/pexels.blade.php new file mode 100644 index 0000000..d9d842a --- /dev/null +++ b/resources/views/icons/pexels.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/phoenixframework.blade.php b/resources/views/icons/phoenixframework.blade.php new file mode 100644 index 0000000..49aeb1d --- /dev/null +++ b/resources/views/icons/phoenixframework.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/phonepe.blade.php b/resources/views/icons/phonepe.blade.php new file mode 100644 index 0000000..b27bced --- /dev/null +++ b/resources/views/icons/phonepe.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/photopea.blade.php b/resources/views/icons/photopea.blade.php new file mode 100644 index 0000000..52afb17 --- /dev/null +++ b/resources/views/icons/photopea.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/php.blade.php b/resources/views/icons/php.blade.php new file mode 100644 index 0000000..38b5126 --- /dev/null +++ b/resources/views/icons/php.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/phpmyadmin.blade.php b/resources/views/icons/phpmyadmin.blade.php new file mode 100644 index 0000000..d8a6c1f --- /dev/null +++ b/resources/views/icons/phpmyadmin.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/phpstorm.blade.php b/resources/views/icons/phpstorm.blade.php new file mode 100644 index 0000000..03b6b26 --- /dev/null +++ b/resources/views/icons/phpstorm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pinterest.blade.php b/resources/views/icons/pinterest.blade.php new file mode 100644 index 0000000..542b3ca --- /dev/null +++ b/resources/views/icons/pinterest.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/plesk.blade.php b/resources/views/icons/plesk.blade.php new file mode 100644 index 0000000..cd8826b --- /dev/null +++ b/resources/views/icons/plesk.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pokemon.blade.php b/resources/views/icons/pokemon.blade.php new file mode 100644 index 0000000..c8cb701 --- /dev/null +++ b/resources/views/icons/pokemon.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/postgresql.blade.php b/resources/views/icons/postgresql.blade.php new file mode 100644 index 0000000..e788f98 --- /dev/null +++ b/resources/views/icons/postgresql.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/postman.blade.php b/resources/views/icons/postman.blade.php new file mode 100644 index 0000000..0a977c0 --- /dev/null +++ b/resources/views/icons/postman.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/prettier.blade.php b/resources/views/icons/prettier.blade.php new file mode 100644 index 0000000..62eed4c --- /dev/null +++ b/resources/views/icons/prettier.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/prime.blade.php b/resources/views/icons/prime.blade.php new file mode 100644 index 0000000..8c37f62 --- /dev/null +++ b/resources/views/icons/prime.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/primevideo.blade.php b/resources/views/icons/primevideo.blade.php new file mode 100644 index 0000000..ef94b10 --- /dev/null +++ b/resources/views/icons/primevideo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/puma.blade.php b/resources/views/icons/puma.blade.php new file mode 100644 index 0000000..663e70f --- /dev/null +++ b/resources/views/icons/puma.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pusher.blade.php b/resources/views/icons/pusher.blade.php new file mode 100644 index 0000000..685f565 --- /dev/null +++ b/resources/views/icons/pusher.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pwa.blade.php b/resources/views/icons/pwa.blade.php new file mode 100644 index 0000000..52a1cc5 --- /dev/null +++ b/resources/views/icons/pwa.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pycharm.blade.php b/resources/views/icons/pycharm.blade.php new file mode 100644 index 0000000..d148e9a --- /dev/null +++ b/resources/views/icons/pycharm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pypi.blade.php b/resources/views/icons/pypi.blade.php new file mode 100644 index 0000000..4b01bbb --- /dev/null +++ b/resources/views/icons/pypi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pypy.blade.php b/resources/views/icons/pypy.blade.php new file mode 100644 index 0000000..5f9f517 --- /dev/null +++ b/resources/views/icons/pypy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/python.blade.php b/resources/views/icons/python.blade.php new file mode 100644 index 0000000..08270ed --- /dev/null +++ b/resources/views/icons/python.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/pytorch.blade.php b/resources/views/icons/pytorch.blade.php new file mode 100644 index 0000000..5dd1689 --- /dev/null +++ b/resources/views/icons/pytorch.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/qt.blade.php b/resources/views/icons/qt.blade.php new file mode 100644 index 0000000..a048d71 --- /dev/null +++ b/resources/views/icons/qt.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/r.blade.php b/resources/views/icons/r.blade.php new file mode 100644 index 0000000..de72a05 --- /dev/null +++ b/resources/views/icons/r.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/raspberrypi.blade.php b/resources/views/icons/raspberrypi.blade.php new file mode 100644 index 0000000..5dae627 --- /dev/null +++ b/resources/views/icons/raspberrypi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/razorpay.blade.php b/resources/views/icons/razorpay.blade.php new file mode 100644 index 0000000..344a3e4 --- /dev/null +++ b/resources/views/icons/razorpay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/react.blade.php b/resources/views/icons/react.blade.php new file mode 100644 index 0000000..259b410 --- /dev/null +++ b/resources/views/icons/react.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/reactbootstrap.blade.php b/resources/views/icons/reactbootstrap.blade.php new file mode 100644 index 0000000..03c0236 --- /dev/null +++ b/resources/views/icons/reactbootstrap.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/reactrouter.blade.php b/resources/views/icons/reactrouter.blade.php new file mode 100644 index 0000000..2a5a955 --- /dev/null +++ b/resources/views/icons/reactrouter.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/redbull.blade.php b/resources/views/icons/redbull.blade.php new file mode 100644 index 0000000..da7cb97 --- /dev/null +++ b/resources/views/icons/redbull.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/reddit.blade.php b/resources/views/icons/reddit.blade.php new file mode 100644 index 0000000..5c286c4 --- /dev/null +++ b/resources/views/icons/reddit.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/redhat.blade.php b/resources/views/icons/redhat.blade.php new file mode 100644 index 0000000..6deb24b --- /dev/null +++ b/resources/views/icons/redhat.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/redux.blade.php b/resources/views/icons/redux.blade.php new file mode 100644 index 0000000..bd6bedf --- /dev/null +++ b/resources/views/icons/redux.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/remix.blade.php b/resources/views/icons/remix.blade.php new file mode 100644 index 0000000..11dd0d2 --- /dev/null +++ b/resources/views/icons/remix.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/renault.blade.php b/resources/views/icons/renault.blade.php new file mode 100644 index 0000000..5d35ab9 --- /dev/null +++ b/resources/views/icons/renault.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/render.blade.php b/resources/views/icons/render.blade.php new file mode 100644 index 0000000..538ace6 --- /dev/null +++ b/resources/views/icons/render.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rive.blade.php b/resources/views/icons/rive.blade.php new file mode 100644 index 0000000..91d2e8c --- /dev/null +++ b/resources/views/icons/rive.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rockstargames.blade.php b/resources/views/icons/rockstargames.blade.php new file mode 100644 index 0000000..b5fed8b --- /dev/null +++ b/resources/views/icons/rockstargames.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rollsroyce.blade.php b/resources/views/icons/rollsroyce.blade.php new file mode 100644 index 0000000..0f6e098 --- /dev/null +++ b/resources/views/icons/rollsroyce.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rotaryinternational.blade.php b/resources/views/icons/rotaryinternational.blade.php new file mode 100644 index 0000000..6fed746 --- /dev/null +++ b/resources/views/icons/rotaryinternational.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/roundcube.blade.php b/resources/views/icons/roundcube.blade.php new file mode 100644 index 0000000..edaefc6 --- /dev/null +++ b/resources/views/icons/roundcube.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rss.blade.php b/resources/views/icons/rss.blade.php new file mode 100644 index 0000000..40fc369 --- /dev/null +++ b/resources/views/icons/rss.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ruby.blade.php b/resources/views/icons/ruby.blade.php new file mode 100644 index 0000000..8d49513 --- /dev/null +++ b/resources/views/icons/ruby.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rubyonrails.blade.php b/resources/views/icons/rubyonrails.blade.php new file mode 100644 index 0000000..7dbc07e --- /dev/null +++ b/resources/views/icons/rubyonrails.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/rust.blade.php b/resources/views/icons/rust.blade.php new file mode 100644 index 0000000..611ab32 --- /dev/null +++ b/resources/views/icons/rust.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/safari.blade.php b/resources/views/icons/safari.blade.php new file mode 100644 index 0000000..b2b27a1 --- /dev/null +++ b/resources/views/icons/safari.blade.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/resources/views/icons/salesforce.blade.php b/resources/views/icons/salesforce.blade.php new file mode 100644 index 0000000..6b2b3a8 --- /dev/null +++ b/resources/views/icons/salesforce.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/samsung.blade.php b/resources/views/icons/samsung.blade.php new file mode 100644 index 0000000..de43804 --- /dev/null +++ b/resources/views/icons/samsung.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/samsungpay.blade.php b/resources/views/icons/samsungpay.blade.php new file mode 100644 index 0000000..b5c9db3 --- /dev/null +++ b/resources/views/icons/samsungpay.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/sandisk.blade.php b/resources/views/icons/sandisk.blade.php new file mode 100644 index 0000000..360e510 --- /dev/null +++ b/resources/views/icons/sandisk.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/sap.blade.php b/resources/views/icons/sap.blade.php new file mode 100644 index 0000000..2ce84bd --- /dev/null +++ b/resources/views/icons/sap.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/sass.blade.php b/resources/views/icons/sass.blade.php new file mode 100644 index 0000000..714f409 --- /dev/null +++ b/resources/views/icons/sass.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/scala.blade.php b/resources/views/icons/scala.blade.php new file mode 100644 index 0000000..fd550d3 --- /dev/null +++ b/resources/views/icons/scala.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/scipy.blade.php b/resources/views/icons/scipy.blade.php new file mode 100644 index 0000000..77bf1de --- /dev/null +++ b/resources/views/icons/scipy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/scrapy.blade.php b/resources/views/icons/scrapy.blade.php new file mode 100644 index 0000000..b5d632d --- /dev/null +++ b/resources/views/icons/scrapy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/semanticui.blade.php b/resources/views/icons/semanticui.blade.php new file mode 100644 index 0000000..b131bc1 --- /dev/null +++ b/resources/views/icons/semanticui.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/semanticuireact.blade.php b/resources/views/icons/semanticuireact.blade.php new file mode 100644 index 0000000..5b60263 --- /dev/null +++ b/resources/views/icons/semanticuireact.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/shadcnui.blade.php b/resources/views/icons/shadcnui.blade.php new file mode 100644 index 0000000..c930991 --- /dev/null +++ b/resources/views/icons/shadcnui.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/shazam.blade.php b/resources/views/icons/shazam.blade.php new file mode 100644 index 0000000..01a87c3 --- /dev/null +++ b/resources/views/icons/shazam.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/shell.blade.php b/resources/views/icons/shell.blade.php new file mode 100644 index 0000000..56cf5b5 --- /dev/null +++ b/resources/views/icons/shell.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/shieldsdotio.blade.php b/resources/views/icons/shieldsdotio.blade.php new file mode 100644 index 0000000..243f53d --- /dev/null +++ b/resources/views/icons/shieldsdotio.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/shopify.blade.php b/resources/views/icons/shopify.blade.php new file mode 100644 index 0000000..d84a73a --- /dev/null +++ b/resources/views/icons/shopify.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/skillshare.blade.php b/resources/views/icons/skillshare.blade.php new file mode 100644 index 0000000..0b54baa --- /dev/null +++ b/resources/views/icons/skillshare.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/skoda.blade.php b/resources/views/icons/skoda.blade.php new file mode 100644 index 0000000..a16e53d --- /dev/null +++ b/resources/views/icons/skoda.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/slack.blade.php b/resources/views/icons/slack.blade.php new file mode 100644 index 0000000..ee556d5 --- /dev/null +++ b/resources/views/icons/slack.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/snapchat.blade.php b/resources/views/icons/snapchat.blade.php new file mode 100644 index 0000000..9613ebc --- /dev/null +++ b/resources/views/icons/snapchat.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/socketdotio.blade.php b/resources/views/icons/socketdotio.blade.php new file mode 100644 index 0000000..b0ff789 --- /dev/null +++ b/resources/views/icons/socketdotio.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/sony.blade.php b/resources/views/icons/sony.blade.php new file mode 100644 index 0000000..1027f59 --- /dev/null +++ b/resources/views/icons/sony.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/soundcloud.blade.php b/resources/views/icons/soundcloud.blade.php new file mode 100644 index 0000000..c75a751 --- /dev/null +++ b/resources/views/icons/soundcloud.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/spacex.blade.php b/resources/views/icons/spacex.blade.php new file mode 100644 index 0000000..6f867fb --- /dev/null +++ b/resources/views/icons/spacex.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/speedtest.blade.php b/resources/views/icons/speedtest.blade.php new file mode 100644 index 0000000..1ce40e2 --- /dev/null +++ b/resources/views/icons/speedtest.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/spring.blade.php b/resources/views/icons/spring.blade.php new file mode 100644 index 0000000..60bed10 --- /dev/null +++ b/resources/views/icons/spring.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/springboot.blade.php b/resources/views/icons/springboot.blade.php new file mode 100644 index 0000000..61d8154 --- /dev/null +++ b/resources/views/icons/springboot.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/sqlite.blade.php b/resources/views/icons/sqlite.blade.php new file mode 100644 index 0000000..1dc7efd --- /dev/null +++ b/resources/views/icons/sqlite.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/stackoverflow.blade.php b/resources/views/icons/stackoverflow.blade.php new file mode 100644 index 0000000..98d1784 --- /dev/null +++ b/resources/views/icons/stackoverflow.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/starbucks.blade.php b/resources/views/icons/starbucks.blade.php new file mode 100644 index 0000000..fb1191c --- /dev/null +++ b/resources/views/icons/starbucks.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/statamic.blade.php b/resources/views/icons/statamic.blade.php new file mode 100644 index 0000000..046622a --- /dev/null +++ b/resources/views/icons/statamic.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/steam.blade.php b/resources/views/icons/steam.blade.php new file mode 100644 index 0000000..8983119 --- /dev/null +++ b/resources/views/icons/steam.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/steamdb.blade.php b/resources/views/icons/steamdb.blade.php new file mode 100644 index 0000000..64f3468 --- /dev/null +++ b/resources/views/icons/steamdb.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/stripe.blade.php b/resources/views/icons/stripe.blade.php new file mode 100644 index 0000000..6886e03 --- /dev/null +++ b/resources/views/icons/stripe.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/styledcomponents.blade.php b/resources/views/icons/styledcomponents.blade.php new file mode 100644 index 0000000..4c2fe6d --- /dev/null +++ b/resources/views/icons/styledcomponents.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/sublimetext.blade.php b/resources/views/icons/sublimetext.blade.php new file mode 100644 index 0000000..4fb4b16 --- /dev/null +++ b/resources/views/icons/sublimetext.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/svelte.blade.php b/resources/views/icons/svelte.blade.php new file mode 100644 index 0000000..2a553ae --- /dev/null +++ b/resources/views/icons/svelte.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/svg.blade.php b/resources/views/icons/svg.blade.php new file mode 100644 index 0000000..53157e5 --- /dev/null +++ b/resources/views/icons/svg.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/swift.blade.php b/resources/views/icons/swift.blade.php new file mode 100644 index 0000000..8af4969 --- /dev/null +++ b/resources/views/icons/swift.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/swiggy.blade.php b/resources/views/icons/swiggy.blade.php new file mode 100644 index 0000000..c4628e4 --- /dev/null +++ b/resources/views/icons/swiggy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/symfony.blade.php b/resources/views/icons/symfony.blade.php new file mode 100644 index 0000000..2183f66 --- /dev/null +++ b/resources/views/icons/symfony.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tacobell.blade.php b/resources/views/icons/tacobell.blade.php new file mode 100644 index 0000000..f588d87 --- /dev/null +++ b/resources/views/icons/tacobell.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tailwindcss.blade.php b/resources/views/icons/tailwindcss.blade.php new file mode 100644 index 0000000..720373b --- /dev/null +++ b/resources/views/icons/tailwindcss.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tata.blade.php b/resources/views/icons/tata.blade.php new file mode 100644 index 0000000..62e77d3 --- /dev/null +++ b/resources/views/icons/tata.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tauri.blade.php b/resources/views/icons/tauri.blade.php new file mode 100644 index 0000000..0cc2350 --- /dev/null +++ b/resources/views/icons/tauri.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tcs.blade.php b/resources/views/icons/tcs.blade.php new file mode 100644 index 0000000..aaea260 --- /dev/null +++ b/resources/views/icons/tcs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/teamviewer.blade.php b/resources/views/icons/teamviewer.blade.php new file mode 100644 index 0000000..2f6ff2a --- /dev/null +++ b/resources/views/icons/teamviewer.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ted.blade.php b/resources/views/icons/ted.blade.php new file mode 100644 index 0000000..47549a4 --- /dev/null +++ b/resources/views/icons/ted.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/telegram.blade.php b/resources/views/icons/telegram.blade.php new file mode 100644 index 0000000..d28bcb4 --- /dev/null +++ b/resources/views/icons/telegram.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tencentqq.blade.php b/resources/views/icons/tencentqq.blade.php new file mode 100644 index 0000000..621a067 --- /dev/null +++ b/resources/views/icons/tencentqq.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tensorflow.blade.php b/resources/views/icons/tensorflow.blade.php new file mode 100644 index 0000000..0447365 --- /dev/null +++ b/resources/views/icons/tensorflow.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/termius.blade.php b/resources/views/icons/termius.blade.php new file mode 100644 index 0000000..cc66517 --- /dev/null +++ b/resources/views/icons/termius.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/terraform.blade.php b/resources/views/icons/terraform.blade.php new file mode 100644 index 0000000..26cd26f --- /dev/null +++ b/resources/views/icons/terraform.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tesla.blade.php b/resources/views/icons/tesla.blade.php new file mode 100644 index 0000000..bd24bda --- /dev/null +++ b/resources/views/icons/tesla.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/thinkpad.blade.php b/resources/views/icons/thinkpad.blade.php new file mode 100644 index 0000000..94ad3e0 --- /dev/null +++ b/resources/views/icons/thinkpad.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/threads.blade.php b/resources/views/icons/threads.blade.php new file mode 100644 index 0000000..473397b --- /dev/null +++ b/resources/views/icons/threads.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/threedotjs.blade.php b/resources/views/icons/threedotjs.blade.php new file mode 100644 index 0000000..3073810 --- /dev/null +++ b/resources/views/icons/threedotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tiktok.blade.php b/resources/views/icons/tiktok.blade.php new file mode 100644 index 0000000..e0e61fd --- /dev/null +++ b/resources/views/icons/tiktok.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/tinder.blade.php b/resources/views/icons/tinder.blade.php new file mode 100644 index 0000000..c7d1d91 --- /dev/null +++ b/resources/views/icons/tinder.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/torbrowser.blade.php b/resources/views/icons/torbrowser.blade.php new file mode 100644 index 0000000..a8471ae --- /dev/null +++ b/resources/views/icons/torbrowser.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/torproject.blade.php b/resources/views/icons/torproject.blade.php new file mode 100644 index 0000000..5a158ac --- /dev/null +++ b/resources/views/icons/torproject.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/toyota.blade.php b/resources/views/icons/toyota.blade.php new file mode 100644 index 0000000..53024e1 --- /dev/null +++ b/resources/views/icons/toyota.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/travisci.blade.php b/resources/views/icons/travisci.blade.php new file mode 100644 index 0000000..2ac965a --- /dev/null +++ b/resources/views/icons/travisci.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/twitch.blade.php b/resources/views/icons/twitch.blade.php new file mode 100644 index 0000000..4334b61 --- /dev/null +++ b/resources/views/icons/twitch.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/typescript.blade.php b/resources/views/icons/typescript.blade.php new file mode 100644 index 0000000..4dcdab4 --- /dev/null +++ b/resources/views/icons/typescript.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/uber.blade.php b/resources/views/icons/uber.blade.php new file mode 100644 index 0000000..55e72a2 --- /dev/null +++ b/resources/views/icons/uber.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/ubuntu.blade.php b/resources/views/icons/ubuntu.blade.php new file mode 100644 index 0000000..88c574d --- /dev/null +++ b/resources/views/icons/ubuntu.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/udacity.blade.php b/resources/views/icons/udacity.blade.php new file mode 100644 index 0000000..7f920a5 --- /dev/null +++ b/resources/views/icons/udacity.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/udemy.blade.php b/resources/views/icons/udemy.blade.php new file mode 100644 index 0000000..268ef5d --- /dev/null +++ b/resources/views/icons/udemy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/unacademy.blade.php b/resources/views/icons/unacademy.blade.php new file mode 100644 index 0000000..8d5f2d6 --- /dev/null +++ b/resources/views/icons/unacademy.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/unilever.blade.php b/resources/views/icons/unilever.blade.php new file mode 100644 index 0000000..2bce44f --- /dev/null +++ b/resources/views/icons/unilever.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/unitednations.blade.php b/resources/views/icons/unitednations.blade.php new file mode 100644 index 0000000..33efef1 --- /dev/null +++ b/resources/views/icons/unitednations.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/unity.blade.php b/resources/views/icons/unity.blade.php new file mode 100644 index 0000000..0cde623 --- /dev/null +++ b/resources/views/icons/unity.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/unrealengine.blade.php b/resources/views/icons/unrealengine.blade.php new file mode 100644 index 0000000..c340565 --- /dev/null +++ b/resources/views/icons/unrealengine.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/unsplash.blade.php b/resources/views/icons/unsplash.blade.php new file mode 100644 index 0000000..2522579 --- /dev/null +++ b/resources/views/icons/unsplash.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/upwork.blade.php b/resources/views/icons/upwork.blade.php new file mode 100644 index 0000000..3c6bd68 --- /dev/null +++ b/resources/views/icons/upwork.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/utorrent.blade.php b/resources/views/icons/utorrent.blade.php new file mode 100644 index 0000000..2abb9d5 --- /dev/null +++ b/resources/views/icons/utorrent.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/vercel.blade.php b/resources/views/icons/vercel.blade.php new file mode 100644 index 0000000..64d6879 --- /dev/null +++ b/resources/views/icons/vercel.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/vespa.blade.php b/resources/views/icons/vespa.blade.php new file mode 100644 index 0000000..45520b5 --- /dev/null +++ b/resources/views/icons/vespa.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/virgin.blade.php b/resources/views/icons/virgin.blade.php new file mode 100644 index 0000000..ae58836 --- /dev/null +++ b/resources/views/icons/virgin.blade.php @@ -0,0 +1,3 @@ + + \ No newline at end of file diff --git a/resources/views/icons/virtualbox.blade.php b/resources/views/icons/virtualbox.blade.php new file mode 100644 index 0000000..dac5b17 --- /dev/null +++ b/resources/views/icons/virtualbox.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/visa.blade.php b/resources/views/icons/visa.blade.php new file mode 100644 index 0000000..f8f26bc --- /dev/null +++ b/resources/views/icons/visa.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/vite.blade.php b/resources/views/icons/vite.blade.php new file mode 100644 index 0000000..b6f2a78 --- /dev/null +++ b/resources/views/icons/vite.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/vivo.blade.php b/resources/views/icons/vivo.blade.php new file mode 100644 index 0000000..468a6ef --- /dev/null +++ b/resources/views/icons/vivo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/vlcmediaplayer.blade.php b/resources/views/icons/vlcmediaplayer.blade.php new file mode 100644 index 0000000..ff64b52 --- /dev/null +++ b/resources/views/icons/vlcmediaplayer.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/vuedotjs.blade.php b/resources/views/icons/vuedotjs.blade.php new file mode 100644 index 0000000..c79b94d --- /dev/null +++ b/resources/views/icons/vuedotjs.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/w3schools.blade.php b/resources/views/icons/w3schools.blade.php new file mode 100644 index 0000000..6c5cd8c --- /dev/null +++ b/resources/views/icons/w3schools.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/warnerbros.blade.php b/resources/views/icons/warnerbros.blade.php new file mode 100644 index 0000000..ff0eb40 --- /dev/null +++ b/resources/views/icons/warnerbros.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/webgl.blade.php b/resources/views/icons/webgl.blade.php new file mode 100644 index 0000000..532fda4 --- /dev/null +++ b/resources/views/icons/webgl.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/webpack.blade.php b/resources/views/icons/webpack.blade.php new file mode 100644 index 0000000..9b7bb12 --- /dev/null +++ b/resources/views/icons/webpack.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/webstorm.blade.php b/resources/views/icons/webstorm.blade.php new file mode 100644 index 0000000..435f4f0 --- /dev/null +++ b/resources/views/icons/webstorm.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wetransfer.blade.php b/resources/views/icons/wetransfer.blade.php new file mode 100644 index 0000000..73579e1 --- /dev/null +++ b/resources/views/icons/wetransfer.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wipro.blade.php b/resources/views/icons/wipro.blade.php new file mode 100644 index 0000000..4ba193a --- /dev/null +++ b/resources/views/icons/wipro.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wix.blade.php b/resources/views/icons/wix.blade.php new file mode 100644 index 0000000..60911ab --- /dev/null +++ b/resources/views/icons/wix.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wondershare.blade.php b/resources/views/icons/wondershare.blade.php new file mode 100644 index 0000000..ad0f708 --- /dev/null +++ b/resources/views/icons/wondershare.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wondersharefilmora.blade.php b/resources/views/icons/wondersharefilmora.blade.php new file mode 100644 index 0000000..0b1c487 --- /dev/null +++ b/resources/views/icons/wondersharefilmora.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/woo.blade.php b/resources/views/icons/woo.blade.php new file mode 100644 index 0000000..12aba1d --- /dev/null +++ b/resources/views/icons/woo.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/woocommerce.blade.php b/resources/views/icons/woocommerce.blade.php new file mode 100644 index 0000000..14f5c26 --- /dev/null +++ b/resources/views/icons/woocommerce.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wordpress.blade.php b/resources/views/icons/wordpress.blade.php new file mode 100644 index 0000000..e7b002c --- /dev/null +++ b/resources/views/icons/wordpress.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/worldhealthorganization.blade.php b/resources/views/icons/worldhealthorganization.blade.php new file mode 100644 index 0000000..6056a42 --- /dev/null +++ b/resources/views/icons/worldhealthorganization.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/wwe.blade.php b/resources/views/icons/wwe.blade.php new file mode 100644 index 0000000..1937e00 --- /dev/null +++ b/resources/views/icons/wwe.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/x.blade.php b/resources/views/icons/x.blade.php new file mode 100644 index 0000000..b0dcf1e --- /dev/null +++ b/resources/views/icons/x.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/xampp.blade.php b/resources/views/icons/xampp.blade.php new file mode 100644 index 0000000..c06de0d --- /dev/null +++ b/resources/views/icons/xampp.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/xcode.blade.php b/resources/views/icons/xcode.blade.php new file mode 100644 index 0000000..db576a3 --- /dev/null +++ b/resources/views/icons/xcode.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/xiaomi.blade.php b/resources/views/icons/xiaomi.blade.php new file mode 100644 index 0000000..18c4680 --- /dev/null +++ b/resources/views/icons/xiaomi.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/yaml.blade.php b/resources/views/icons/yaml.blade.php new file mode 100644 index 0000000..35e268a --- /dev/null +++ b/resources/views/icons/yaml.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/yarn.blade.php b/resources/views/icons/yarn.blade.php new file mode 100644 index 0000000..b5078e0 --- /dev/null +++ b/resources/views/icons/yarn.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/yoast.blade.php b/resources/views/icons/yoast.blade.php new file mode 100644 index 0000000..fc8025c --- /dev/null +++ b/resources/views/icons/yoast.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/youtube.blade.php b/resources/views/icons/youtube.blade.php new file mode 100644 index 0000000..4e5c177 --- /dev/null +++ b/resources/views/icons/youtube.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/youtubegaming.blade.php b/resources/views/icons/youtubegaming.blade.php new file mode 100644 index 0000000..880c41b --- /dev/null +++ b/resources/views/icons/youtubegaming.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/youtubekids.blade.php b/resources/views/icons/youtubekids.blade.php new file mode 100644 index 0000000..b365a48 --- /dev/null +++ b/resources/views/icons/youtubekids.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/youtubemusic.blade.php b/resources/views/icons/youtubemusic.blade.php new file mode 100644 index 0000000..aabfaca --- /dev/null +++ b/resources/views/icons/youtubemusic.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/youtubeshorts.blade.php b/resources/views/icons/youtubeshorts.blade.php new file mode 100644 index 0000000..32969b3 --- /dev/null +++ b/resources/views/icons/youtubeshorts.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/youtubestudio.blade.php b/resources/views/icons/youtubestudio.blade.php new file mode 100644 index 0000000..3a60dc8 --- /dev/null +++ b/resources/views/icons/youtubestudio.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/zapier.blade.php b/resources/views/icons/zapier.blade.php new file mode 100644 index 0000000..2411aca --- /dev/null +++ b/resources/views/icons/zapier.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/zcash.blade.php b/resources/views/icons/zcash.blade.php new file mode 100644 index 0000000..ded9821 --- /dev/null +++ b/resources/views/icons/zcash.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/zendesk.blade.php b/resources/views/icons/zendesk.blade.php new file mode 100644 index 0000000..94c2b5f --- /dev/null +++ b/resources/views/icons/zendesk.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/zomato.blade.php b/resources/views/icons/zomato.blade.php new file mode 100644 index 0000000..7caf7ce --- /dev/null +++ b/resources/views/icons/zomato.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/resources/views/icons/zoom.blade.php b/resources/views/icons/zoom.blade.php new file mode 100644 index 0000000..855d1f0 --- /dev/null +++ b/resources/views/icons/zoom.blade.php @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/src/Facades/RkIcon.php b/src/Facades/RkIcon.php new file mode 100644 index 0000000..35c622e --- /dev/null +++ b/src/Facades/RkIcon.php @@ -0,0 +1,17 @@ +name = $name; + $this->width = $width; + $this->height = $height; + $this->color = $color; + } + + public function render() + { + return view('rk-icons::icons.' . $this->name, [ + 'name' => $this->name, + 'width' => $this->width, + 'height' => $this->height, + 'color' => $this->color, + ]); + } +} \ No newline at end of file diff --git a/src/IconServiceProvider.php b/src/IconServiceProvider.php new file mode 100644 index 0000000..b3caf9e --- /dev/null +++ b/src/IconServiceProvider.php @@ -0,0 +1,30 @@ +loadViewsFrom(__DIR__.'/../resources/views', 'rk-icons'); + + // Register the Blade component + Blade::component('rk-icons::icon', Icon::class); + } + + public function register() + { + // Register the RkIconFactory service + $this->app->singleton('rk-icon', function($app) { + return new RkIconFactory(); + }); + } +} \ No newline at end of file diff --git a/src/RkIconFactory.php b/src/RkIconFactory.php new file mode 100644 index 0000000..e80f2b1 --- /dev/null +++ b/src/RkIconFactory.php @@ -0,0 +1,15 @@ + $name])->render(); + } +} \ No newline at end of file