├── .github ├── .lycheeignore ├── FUNDING.yml ├── generate.js └── workflows │ └── broken-link-checker.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── readme └── header.svg └── source-web ├── .eslintignore ├── .eslintrc.cjs ├── .npmrc ├── .prettierignore ├── .prettierrc ├── package-lock.json ├── package.json ├── postcss.config.js ├── src ├── app.html ├── assets │ ├── categories.js │ ├── db │ │ ├── 3d.json │ │ ├── backgrounds.json │ │ ├── blogs.json │ │ ├── colors.json │ │ ├── components.json │ │ ├── icons.json │ │ ├── illustrations.json │ │ ├── inspirations.json │ │ ├── libraries.json │ │ ├── photos.json │ │ ├── tools.json │ │ ├── typography.json │ │ └── videos.json │ ├── fonts │ │ ├── Gabarito-Regular.ttf │ │ └── Gabarito-SemiBold.ttf │ └── icons │ │ ├── arrow.svg │ │ ├── backArrow.svg │ │ ├── close.svg │ │ ├── coffee.svg │ │ ├── darkmode.svg │ │ ├── external-link.svg │ │ ├── external.svg │ │ ├── info.svg │ │ ├── lightmode.svg │ │ ├── menu.svg │ │ ├── noresults.svg │ │ ├── search.svg │ │ ├── star.svg │ │ └── tag.svg ├── components │ ├── AssetCard.svelte │ ├── Assets.svelte │ ├── Menu.svelte │ ├── NavBar.svelte │ └── ui │ │ ├── Image.svelte │ │ ├── Pagination.svelte │ │ └── Slider.svelte └── routes │ ├── +error.svelte │ ├── +layout.svelte │ ├── +page.svelte │ ├── [category] │ ├── +page.server.js │ └── +page.svelte │ └── styles.css ├── static ├── categories-icons │ ├── 3d.svg │ ├── backgrounds.svg │ ├── blogs.svg │ ├── colors.svg │ ├── components.svg │ ├── home.svg │ ├── icons.svg │ ├── illustrations.svg │ ├── inspirations.svg │ ├── libraries.svg │ ├── photos.svg │ ├── tools.svg │ ├── typography.svg │ └── videos.svg ├── favicon.svg ├── placeholder.gif └── robots.txt ├── svelte.config.js ├── tailwind.config.js └── vite.config.js /.github/.lycheeignore: -------------------------------------------------------------------------------- 1 | https://pixabay.com/* 2 | https://www.pexels.com/* 3 | https://svgl.vercel.app/ 4 | https://help.videvo.net/* 5 | https://remixicon.com/license 6 | flaticon.com/* 7 | https://www.artstation.com/ 8 | https://archetypeapp.com 9 | https://github.com/chakra-ui/ark/* 10 | https://medium.com/ 11 | https://www.blendswap.com/ 12 | https://www.figma.com/community/* 13 | https://www.turbosquid.com/ -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: cosmoart -------------------------------------------------------------------------------- /.github/generate.js: -------------------------------------------------------------------------------- 1 | const fs = require('fs'); 2 | const path = require('path'); 3 | 4 | // Output md 5 | const dbFolderPath = path.join(__dirname, '../source-web/src/assets/db') 6 | const outputFilePath = path.join(__dirname, 'output.md') 7 | 8 | fs.readdir(dbFolderPath, (err, files) => { 9 | if (err) return console.error('Error reading folder: ', err) 10 | const links = [] 11 | 12 | files.forEach(file => { 13 | const filePath = path.join(dbFolderPath, file); 14 | const jsonData = require(filePath); 15 | 16 | jsonData.forEach(item => { 17 | links.push(`[${item.name}](${item.link}) ${item.licenseLink ? `- [License](${item.licenseLink})` : ""}`) 18 | }) 19 | }) 20 | 21 | fs.writeFile(outputFilePath, links.join('\n'), err => { 22 | if (err) return console.error('Error writing Markdown file: ', err) 23 | console.log('Markdown file generated successfully.') 24 | }) 25 | }) 26 | 27 | // Ignore links 28 | const ignoreOutputPath = path.join(__dirname, '../.lycheeignore') 29 | const ignoreFilePath = path.join(__dirname, './.lycheeignore') 30 | 31 | fs.readFile(ignoreFilePath, "utf8", (err, file) => { 32 | if (err) return console.error('Error reading folder: ', err) 33 | 34 | fs.writeFile(ignoreOutputPath, file, err => { 35 | if (err) return console.error('Error writing Markdown file: ', err) 36 | console.log('Ignore file generated successfully.') 37 | }) 38 | }) 39 | -------------------------------------------------------------------------------- /.github/workflows/broken-link-checker.yaml: -------------------------------------------------------------------------------- 1 | name: Check broken links 2 | 3 | on: 4 | workflow_dispatch: 5 | schedule: 6 | - cron: "00 18 */4 * *" 7 | 8 | jobs: 9 | generate_md_file: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout code 13 | uses: actions/checkout@v4 14 | 15 | - name: Set up Node.js 16 | uses: actions/setup-node@v4 17 | with: 18 | node-version: 'latest' 19 | 20 | - name: Generate md file and ignore list 21 | run: node .github/generate.js 22 | 23 | - name: Link Checker 24 | id: lychee 25 | uses: lycheeverse/lychee-action@v1 26 | with: 27 | args: --no-progress '.github/output.md' --exclude-mail 28 | 29 | - name: Create Issue From File 30 | if: env.lychee_exit_code != 0 31 | uses: peter-evans/create-issue-from-file@v4 32 | with: 33 | title: Link Checker Report 34 | content-filepath: ./lychee/out.md 35 | labels: report, automated issue -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | source-web/build 4 | source-web/.svelte-kit 5 | source-web/package 6 | .env 7 | .env.* 8 | !.env.example 9 | .vercel 10 | .output 11 | vite.config.js.timestamp-* 12 | vite.config.ts.timestamp-* 13 | view.txt 14 | .vercel 15 | format-json.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | cosmohydra17@gmail.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Thank you for your interest in contributing to Freesets! You can help us by contributing new resources or improving the website. 4 | 5 | You can contribute new resources to Freesets in two different ways: 6 | - [Suggesting the resource(s) in discussions or issues.](https://github.com/cosmoart/Freesets/issues) 7 | - [Making a pull request.](#making-a-pull-request) 8 | 9 | **Before suggesting a resource make sure that:** 10 | 11 | - The resource is completely or partially free. 12 | - The resource is not already in the database. 13 | - There is a category for the resource (if not, you can suggest it in the discussions). 14 | - The resource follows the [correct structure](#resource-structure). 15 | 16 | ## Making a pull request 17 | 18 | To make a pull request follow the following steps: 19 | 20 | 1. Clone the repository. 21 | 22 | ```bash 23 | git clone https://github.com/cosmoart/free-resources 24 | ``` 25 | 26 | 2. Create a new branch. This step is optional, but recommended. 27 | 28 | ```bash 29 | git checkout -b my-branch 30 | ``` 31 | 32 | 3. Make the changues in the website or add your resources to the jsons files in the `source-web/src/assets/db`. 33 | 34 | 4. Commit your changes. 35 | 36 | ```bash 37 | git commit -m "✨ add resources" 38 | ``` 39 | 40 | 5. Push to the branch. 41 | 42 | ```bash 43 | git push origin my-branch 44 | ``` 45 | 46 | 6. Open a pull request. 47 | 48 | ## Resource structure 49 | 50 | - id*: `number - required` 51 | - Unique number: an id should not be repeated in the same json file. 52 | - It is recommended to add the new resources at the end and follow the order with the previous ids. 53 | - order*: `number - required` 54 | - Number between 0 and 100 that represents the quality of the resource. Being 0 bad and 100 excellent. 55 | - To rate the quality of a resource, you can use criteria like: UI/UX design, how permissive the license is (CC0 is great, needing to attribute or not use in commercial projects not so much), is it completely free or just some elements, etc. 56 | - name*: `string - required`- Name of the resource. 57 | - link*: `string - required` - Link to the resource. 58 | - img*: `string - required` - Image URL 59 | - It must follow the following format: https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/category/name, where category is the category of the image (icons, tools, 3d...) and name It is a unique name that should not be repeated (bootstrap, css_tools, gratisography...). An example can be: https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/rjsgqt0ldn8betpkcm. 60 | - You don't need to upload any photos, just complete the url. 61 | - license: `string` 62 | - License of the resource. 63 | - If you need to add a description to the license and the resource does not have a clear license, you can use words like "Free", "Freemium" or "Free with attribution". 64 | - licenseLink: `string` - Link to the resource license. 65 | - licenseDescription: `string` - Description and important information of the license. 66 | - tags: `array of strings` - Tags, for example: `IA`, `React`, `Library`, `Loaders`... 67 | 68 | ```json 69 | { 70 | "id": 23, 71 | "order": 73, 72 | "name": "Resource name", 73 | "link": "https://resource.com", 74 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/category/name", 75 | "license": "Free", 76 | "licenseLink": "https://resource.com/licence", 77 | "licenseDescription": "\"License may use the Work in non-commercial and commercial projects, services or products without attribution.\"", 78 | "tags": ["IA", "React", "Library", "3D"] 79 | } 80 | ``` 81 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Cosmo 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # Add X resources 2 | 3 | Be sure to complete and check the following steps: 4 | 5 | - [ ] My changes were made in the `source-web/src/assets/db` folder. 6 | - [ ] The resource(s) is completely or partially free. 7 | - [ ] The resource(s) is not already in the database. 8 | - [ ] All resources have an id, order, name, link and img. 9 | - [ ] The ids and urls of the images are not repeated. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | 5 |
6 | 7 | ![header](./readme/header.svg) 8 | 9 | # Freesets 10 | 11 |
12 | 13 | Freesets is a collection of free, high-quality resources that you can use in your web projects. Here you will find icons, images, videos, illustrations, fonts and more. All resources have at least one free version or free plan, but please read the license before using them. You can contribute to this project by suggesting new resources or making a pull request. 14 | 15 |
16 | 17 | Contribute 18 | · 19 | Report Bug/Error 20 | · 21 | Request Feature 22 | 23 |
24 | 25 | ## Contributing 26 | 27 | Everyone is welcome to collaborate with this project. Before contributing, please read the [contribution guide](https://github.com/cosmoart/freesets/blob/main/CONTRIBUTING.md). 28 | 29 | ## License 30 | 31 | Website code distributed under the MIT License. See `LICENSE` for more information. 32 | 33 | ## Contributors 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /readme/header.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /source-web/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: ['eslint:recommended', 'plugin:svelte/recommended', 'prettier'], 4 | parserOptions: { 5 | sourceType: 'module', 6 | ecmaVersion: 2020, 7 | extraFileExtensions: ['.svelte'] 8 | }, 9 | env: { 10 | browser: true, 11 | es2017: true, 12 | node: true 13 | }, 14 | rules: { 15 | 'indent': [1, 'tab'], 16 | 'no-tabs': 0, 17 | 'jsx-quotes': [1, 'prefer-single'], 18 | 'react/react-in-jsx-scope': 'off', 19 | 'react/prop-types': 'off', 20 | 'no-unused-vars': 1, 21 | 'useUnknownInCatchVariables': 0, 22 | 'quotes': [1, 'single'], 23 | 'no-trailing-spaces': 1, 24 | 'comma-dangle': [1, 'only-multiline'], 25 | } 26 | }; 27 | -------------------------------------------------------------------------------- /source-web/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /source-web/.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /source-web/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "plugins": ["prettier-plugin-svelte"], 7 | "pluginSearchDirs": ["."], 8 | "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] 9 | } 10 | -------------------------------------------------------------------------------- /source-web/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "freesets", 3 | "version": "0.1.0", 4 | "scripts": { 5 | "dev": "vite dev --host", 6 | "build": "vite build", 7 | "preview": "vite preview", 8 | "lint": "prettier --plugin-search-dir . --check . && eslint .", 9 | "format": "prettier --plugin-search-dir . --write ." 10 | }, 11 | "devDependencies": { 12 | "@fontsource/fira-mono": "^4.5.10", 13 | "@sveltejs/adapter-auto": "^2.0.0", 14 | "@sveltejs/kit": "^1.20.4", 15 | "autoprefixer": "^10.4.16", 16 | "eslint": "^8.28.0", 17 | "eslint-config-prettier": "^8.5.0", 18 | "eslint-plugin-svelte": "^2.30.0", 19 | "postcss": "^8.4.31", 20 | "prettier": "^2.8.0", 21 | "prettier-plugin-svelte": "^2.10.1", 22 | "svelte": "^4.0.5", 23 | "tailwindcss": "^3.3.3", 24 | "vite": "^4.4.2" 25 | }, 26 | "type": "module" 27 | } 28 | -------------------------------------------------------------------------------- /source-web/postcss.config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /source-web/src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 16 | 24 | 25 | 26 | %sveltekit.head% 27 | 28 | 29 | 30 |
%sveltekit.body%
31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source-web/src/assets/categories.js: -------------------------------------------------------------------------------- 1 | import iconsDB from '@/assets/db/icons.json' 2 | import illustrationsDB from '@/assets/db/illustrations.json' 3 | import photosDB from '@/assets/db/photos.json' 4 | import videosDB from '@/assets/db/videos.json' 5 | import colorsDB from '@/assets/db/colors.json' 6 | import backgroundsDB from '@/assets/db/backgrounds.json' 7 | import typographyDB from '@/assets/db/typography.json' 8 | import threeDB from '@/assets/db/3d.json' 9 | import librariesDB from '@/assets/db/libraries.json' 10 | import blogsDB from '@/assets/db/blogs.json' 11 | import toolsDB from '@/assets/db/tools.json' 12 | import inspirationsDB from '@/assets/db/inspirations.json' 13 | import componentsDB from '@/assets/db/components.json' 14 | 15 | export default [ 16 | { 17 | name: 'Icons', 18 | color: '#2b6dff', 19 | nameID: 'icons', 20 | assets: iconsDB.sort((a, b) => b.order - a.order) 21 | }, 22 | { 23 | name: 'Illustrations', 24 | color: '#20c928', 25 | nameID: 'illustrations', 26 | assets: illustrationsDB.sort((a, b) => b.order - a.order) 27 | }, 28 | { 29 | name: 'Photos', 30 | color: '#d41cf1', 31 | nameID: 'photos', 32 | assets: photosDB.sort((a, b) => b.order - a.order) 33 | }, 34 | { 35 | name: 'Videos', 36 | color: '#ef2350', 37 | nameID: 'videos', 38 | assets: videosDB.sort((a, b) => b.order - a.order) 39 | }, 40 | { 41 | name: 'Colors', 42 | color: '#ff36a2', 43 | nameID: 'colors', 44 | assets: colorsDB.sort((a, b) => b.order - a.order) 45 | }, 46 | { 47 | name: 'Backgrounds', 48 | color: '#5345f7', 49 | nameID: 'backgrounds', 50 | assets: backgroundsDB.sort((a, b) => b.order - a.order) 51 | }, 52 | { 53 | name: 'Typography', 54 | color: '#ffaa1b', 55 | nameID: 'typography', 56 | assets: typographyDB.sort((a, b) => b.order - a.order) 57 | }, 58 | { 59 | name: '3D', 60 | color: '#8935ff', 61 | nameID: '3d', 62 | assets: threeDB.sort((a, b) => b.order - a.order) 63 | }, 64 | { 65 | name: 'Libraries', 66 | color: '#ff006e', 67 | nameID: 'libraries', 68 | assets: librariesDB.sort((a, b) => b.order - a.order) 69 | }, 70 | { 71 | name: 'Blogs', 72 | color: '#00a1ff', 73 | nameID: 'blogs', 74 | assets: blogsDB.sort((a, b) => b.order - a.order) 75 | }, 76 | { 77 | name: 'Tools', 78 | color: '#f97316', 79 | nameID: 'tools', 80 | assets: toolsDB.sort((a, b) => b.order - a.order) 81 | }, 82 | { 83 | name: 'Inspirations', 84 | color: '#6366f1', 85 | nameID: 'inspirations', 86 | assets: inspirationsDB.sort((a, b) => b.order - a.order) 87 | }, 88 | { 89 | name: 'Components', 90 | color: '#21c95f', 91 | nameID: 'components', 92 | assets: componentsDB.sort((a, b) => b.order - a.order) 93 | } 94 | ] 95 | -------------------------------------------------------------------------------- /source-web/src/assets/db/3d.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 100, 5 | "name": "Poly Haven", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/polyhaven", 7 | "link": "https://polyhaven.com", 8 | "tags": ["HDRIs", "Textures", "Models"], 9 | "license": "CC0", 10 | "licenseLink": "https://polyhaven.com/license", 11 | "licenseDescription": "Our assets are all licensed as CC0, which is effectively Public Domain." 12 | }, 13 | { 14 | "id": 2, 15 | "order": 98, 16 | "name": "Itchio", 17 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/itchio", 18 | "link": "https://itch.io/game-assets/free", 19 | "license": "Multiple", 20 | "licenseDescription": "Itchio is a marketplace for indie game developers. Each asset has its own license.", 21 | "tags": ["Store"] 22 | }, 23 | { 24 | "id": 3, 25 | "order": 95, 26 | "name": "Kenney", 27 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/kenney", 28 | "link": "https://kenney.nl", 29 | "license": "CC0", 30 | "licenseLink": "https://www.kenney.nl/support" 31 | }, 32 | { 33 | "id": 4, 34 | "order": 92, 35 | "name": "ambientCG", 36 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/ambientcg", 37 | "link": "https://ambientcg.com", 38 | "tags": ["HDRIs", "Textures", "Models"], 39 | "license": "CC0 1.0", 40 | "licenseLink": "https://docs.ambientcg.com/license/", 41 | "licenseDescription": "All ambientCG assets are provided under the Creative Commons CC0 1.0 Universal License." 42 | }, 43 | { 44 | "id": 5, 45 | "order": 90, 46 | "name": "Share Textures", 47 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/sharetextures", 48 | "link": "https://www.sharetextures.com", 49 | "tags": ["Atlases", "Textures", "Models"], 50 | "license": "CC0", 51 | "licenseLink": "https://www.sharetextures.com/p/license", 52 | "licenseDescription": "All of our content is copyright-free [CC0]. It means you can use them anywhere you want which includes commercial projects too." 53 | }, 54 | { 55 | "id": 6, 56 | "order": 83, 57 | "name": "BlenderKit", 58 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/blenderkit", 59 | "link": "https://www.blenderkit.com", 60 | "tags": ["Textures", "Models", "HDRIs", "Brushes"], 61 | "license": "RF & CC0", 62 | "licenseLink": "https://www.blenderkit.com/docs/licenses/", 63 | "licenseDescription": "BlenderKit only has 2 available licenses. Everything you download is available for commercial use. Both allow you to sell higher-level-derivative works, but royalty free license doesn't allow to re-sell 3D models even if modified." 64 | }, 65 | { 66 | "id": 7, 67 | "order": 78, 68 | "name": "CG Bookcase", 69 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/cgbookcase", 70 | "link": "https://www.cgbookcase.com", 71 | "tags": ["Textures"], 72 | "license": "CC0 1.0", 73 | "licenseLink": "https://www.cgbookcase.com/textures", 74 | "licenseDescription": "The textures are published under the CC0 1.0 license, which means means you can use them for free without giving credit." 75 | }, 76 | { 77 | "id": 8, 78 | "order": 70, 79 | "name": "3Dassets.one", 80 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/3dassetsone", 81 | "link": "https://3dassets.one", 82 | "tags": ["HDRIs", "Textures", "Models"], 83 | "license": "Multiple" 84 | }, 85 | { 86 | "id": 9, 87 | "order": 40, 88 | "name": "Quaternius", 89 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/quaternius", 90 | "link": "https://quaternius.com/", 91 | "tags": ["Models"], 92 | "license": "CC0" 93 | }, 94 | { 95 | "id": 10, 96 | "order": 35, 97 | "name": "Turbosquid", 98 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/turbosquid", 99 | "link": "https://www.turbosquid.com/", 100 | "tags": ["Models"], 101 | "license": "Multiple", 102 | "licenseLink": "https://blog.turbosquid.com/turbosquid-3d-model-license/" 103 | }, 104 | { 105 | "id": 11, 106 | "order": 10, 107 | "name": "Game Art 2D", 108 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/gameart2d", 109 | "link": "https://www.gameart2d.com/freebies.html", 110 | "tags": ["Sprites", "Tileset", "GUI"], 111 | "license": "CC0", 112 | "licenseLink": "https://www.gameart2d.com/license.html", 113 | "licenseDescription": "For the game assets in Freebies section, it's under Creative Common Zero (CC0) a.k.a Public Domain license." 114 | }, 115 | { 116 | "id": 12, 117 | "order": 8, 118 | "name": "textures.com", 119 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/textures", 120 | "link": "https://www.textures.com/free", 121 | "tags": ["Textures"], 122 | "license": "Freemium", 123 | "licenseLink": "https://www.textures.com/faq-license" 124 | }, 125 | { 126 | "id": 13, 127 | "order": 8, 128 | "name": "Quixel", 129 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/quixel", 130 | "link": "https://quixel.com/megascans/free", 131 | "tags": ["Decals", "Textures", "Models"], 132 | "license": "Freemium", 133 | "licenseLink": "https://quixel.com/pricing" 134 | }, 135 | { 136 | "id": 14, 137 | "order": 8, 138 | "name": "Poliigon", 139 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/poliigon", 140 | "link": "https://www.poliigon.com/search/free", 141 | "tags": ["HDRIs", "Textures", "Models"], 142 | "license": "Freemium", 143 | "licenseLink": "https://www.poliigon.com/pricing" 144 | }, 145 | { 146 | "id": 15, 147 | "order": 27, 148 | "name": "CGTrader", 149 | "link": "https://www.cgtrader.com/free-3d-models", 150 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/cgtrader", 151 | "tags": ["Models"], 152 | "license": "Freemium", 153 | "licenseLink": "https://www.cgtrader.com/pages/terms-and-conditions#royalty-free-license" 154 | }, 155 | { 156 | "id": 16, 157 | "order": 8, 158 | "name": "3DExport", 159 | "link": "https://3dexport.com/", 160 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/3dexport", 161 | "tags": ["Models"], 162 | "license": "Multiple" 163 | }, 164 | { 165 | "id": 17, 166 | "order": 75, 167 | "name": "ArtStation Marketplace", 168 | "link": "https://www.artstation.com/marketplace/game-dev?section=trending&price_to=0", 169 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/artstation", 170 | "license": "Multiple", 171 | "tags": ["Store"] 172 | }, 173 | { 174 | "id": 18, 175 | "order": 80, 176 | "name": "Sketchfab", 177 | "link": "https://sketchfab.com/features/free-3d-models", 178 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/sketchfab", 179 | "license": "Multiple", 180 | "tags": ["Store"] 181 | }, 182 | { 183 | "id": 19, 184 | "order": 20, 185 | "name": "NormalMap-Online", 186 | "link": "https://cpetry.github.io/NormalMap-Online/", 187 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/normalmap", 188 | "tags": ["Tool"] 189 | }, 190 | { 191 | "id": 20, 192 | "order": 30, 193 | "name": "Online 3D Viewer", 194 | "link": "https://3dviewer.net/", 195 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/3dviewer", 196 | "tags": ["Tool"] 197 | }, 198 | { 199 | "id": 21, 200 | "order": 68, 201 | "name": "3dsky", 202 | "link": "https://3dsky.org/3dmodels?types=free", 203 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/3dskyorg", 204 | "tags": ["Store"] 205 | }, 206 | { 207 | "id": 22, 208 | "order": 12, 209 | "name": "Dimensiva", 210 | "link": "https://dimensiva.com/free-3d-models/", 211 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/dimensiva", 212 | "tags": ["Models"] 213 | }, 214 | { 215 | "id": 23, 216 | "order": 91, 217 | "name": "3D model collection", 218 | "link": "https://sketchfab.com/nebulousflynn/collections/cc0-9e9b8c5442ab4b59ba16b6fa5e43b8da", 219 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/nebulousflynn", 220 | "tags": ["Models", "Heritage", "Models"], 221 | "license": "CC0" 222 | }, 223 | { 224 | "id": 24, 225 | "order": 36, 226 | "name": "Blend Swap", 227 | "link": "https://www.blendswap.com/", 228 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/3d/blendswap", 229 | "tags": ["Models"], 230 | "license": "Multiple" 231 | } 232 | ] 233 | -------------------------------------------------------------------------------- /source-web/src/assets/db/backgrounds.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "name": "bg.ibelick", 5 | "link": "https://bg.ibelick.com", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703614372/freesets/backgrounds/byn5pbw6ikqp95yyyske.webp", 7 | "order": 100, 8 | "tags": ["Tailwind"] 9 | }, 10 | { 11 | "id": 2, 12 | "name": "CSS Background Patterns", 13 | "link": "https://www.magicpattern.design/tools/css-backgrounds", 14 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/csspatterns", 15 | "license": "Multiple", 16 | "licenseLink": "https://www.magicpattern.design/terms", 17 | "order": 95 18 | }, 19 | { 20 | "id": 3, 21 | "name": "Pattern Generator", 22 | "link": "https://doodad.dev/pattern-generator/", 23 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/pattern_generator", 24 | "license": "Free", 25 | "licenseLink": "https://doodad.dev/pattern-generator/", 26 | "licenseDescription": "You can use the patterns in any project, commercial or personal without attribution or any costs", 27 | "order": 80 28 | }, 29 | { 30 | "id": 4, 31 | "name": "Pattern Monster", 32 | "link": "https://pattern.monster", 33 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/pattern_monster", 34 | "license": "MIT", 35 | "licenseLink": "https://github.com/catchspider2002/svelte-svg-patterns/blob/master/LICENSE.md", 36 | "order": 85 37 | }, 38 | { 39 | "id": 5, 40 | "name": "pattern.css", 41 | "link": "https://bansal.io/pattern-css", 42 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/pattern_css", 43 | "license": "MIT", 44 | "licenseLink": "https://github.com/bansal/pattern.css", 45 | "order": 80 46 | }, 47 | { 48 | "id": 6, 49 | "name": "Haikei", 50 | "link": "https://haikei.app/generators/", 51 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/haikei", 52 | "license": "Multiple", 53 | "licenseLink": "https://haikei.app/pricing/", 54 | "licenseDescription": "Basic Plan, Pro Plan", 55 | "order": 77 56 | }, 57 | { 58 | "id": 7, 59 | "name": "Hero Patterns", 60 | "link": "https://www.heropatterns.com", 61 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/heropatterns", 62 | "license": "CC BY 4.0", 63 | "licenseLink": "https://heropatterns.com", 64 | "licenseDescription": "Free with attribution", 65 | "order": 75 66 | }, 67 | { 68 | "id": 8, 69 | "name": "Cool Backgrounds", 70 | "link": "https://coolbackgrounds.io", 71 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706404961/freesets/backgrounds/fe8ljxu66grtmvzvnlm4.webp", 72 | "order": 75 73 | }, 74 | { 75 | "id": 9, 76 | "name": "PatternPad", 77 | "link": "https://patternpad.com", 78 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/patternpad", 79 | "license": "CC BY 4.0", 80 | "licenseLink": "https://patternpad.com", 81 | "licenseDescription": "Free with attribution", 82 | "order": 70 83 | }, 84 | { 85 | "id": 10, 86 | "name": "Visiwig", 87 | "link": "https://www.visiwig.com/patterns/", 88 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/visiwig", 89 | "license": "Free", 90 | "licenseLink": "https://www.visiwig.com/pattern-license/", 91 | "licenseDescription": "You can use the patterns in any project, commercial or personal without attribution or any costs, but you can’t replicate Vector Pattern Generator, redistribute the patterns in packs, or create integrations for these patterns.", 92 | "order": 65 93 | }, 94 | { 95 | "id": 11, 96 | "name": "Tartanify", 97 | "link": "https://tartanify.com/", 98 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/tartanify", 99 | "license": "Multiple", 100 | "licenseLink": "https://tartanify.com/terms-of-use", 101 | "order": 60 102 | }, 103 | { 104 | "id": 12, 105 | "name": "SVG Backgrounds", 106 | "link": "https://www.svgbackgrounds.com/", 107 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/svg_backgrounds", 108 | "license": "CC BY 4.0", 109 | "licenseLink": "https://www.svgbackgrounds.com/license/", 110 | "order": 58 111 | }, 112 | { 113 | "id": 13, 114 | "name": "CSS Pattern", 115 | "link": "https://css-pattern.com/", 116 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/css_pattern", 117 | "license": "MIT", 118 | "licenseLink": "https://github.com/Afif13/CSS-Pattern/blob/main/LICENCE", 119 | "order": 55 120 | }, 121 | { 122 | "id": 14, 123 | "name": "Super designer", 124 | "link": "https://superdesigner.co", 125 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704377698/freesets/backgrounds/kyzflrd7lyidfg5djpv8.webp", 126 | "order": 55 127 | }, 128 | { 129 | "id": 15, 130 | "order": 50, 131 | "name": "CSS3 Patterns Gallery", 132 | "link": "https://projects.verou.me/css3patterns/", 133 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/patterns_gallery", 134 | "license": "MIT", 135 | "licenseLink": "https://github.com/LeaVerou/css3patterns/blob/master/license.txt" 136 | }, 137 | { 138 | "id": 16, 139 | "order": 97, 140 | "name": "UVCanvas", 141 | "link": "https://uvcanvas.com", 142 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/uvcanvas", 143 | "license": "MIT", 144 | "licenseLink": "https://github.com/latentcat/uvcanvas?tab=readme-ov-file#license", 145 | "tags": ["React", "Package"] 146 | }, 147 | { 148 | "id": 17, 149 | "order": 82, 150 | "name": "SVG Patterns", 151 | "link": "https://nucleoapp.com/svg-patterns", 152 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/svg-patterns" 153 | }, 154 | { 155 | "id": 18, 156 | "order": 67, 157 | "name": "Basic Pattern Repository", 158 | "link": "https://patterns.helloyes.dev/", 159 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/patternshelloyes", 160 | "tags": ["SVG"] 161 | }, 162 | { 163 | "id": 19, 164 | "order": 78, 165 | "name": "fffuel", 166 | "link": "https://fffuel.co/", 167 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/fffuel" 168 | }, 169 | { 170 | "id": 20, 171 | "order": 55, 172 | "name": "Shape Divider App", 173 | "link": "https://www.shapedivider.app", 174 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/shapedivider" 175 | }, 176 | { 177 | "id": 21, 178 | "order": 50, 179 | "name": "Tabbied", 180 | "link": "https://tabbied.com/", 181 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/tabbied" 182 | }, 183 | { 184 | "id": 22, 185 | "order": 95, 186 | "name": "ColorBeta", 187 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/colorbeta", 188 | "link": "https://colorbeta.com/", 189 | "tags": ["Gradients"] 190 | }, 191 | { 192 | "id": 23, 193 | "order": 85, 194 | "name": "NEAT", 195 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/neat", 196 | "link": "https://neat.firecms.co/", 197 | "tags": ["Gradients", "Package"], 198 | "license": "GPL-3.0", 199 | "licenseLink": "https://github.com/firecmsco/neat/blob/main/LICENSE" 200 | }, 201 | { 202 | "id": 24, 203 | "order": 85, 204 | "name": "Gradienty", 205 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/gradienty", 206 | "link": "https://gradienty.codes/", 207 | "tags": ["Tailwind"] 208 | }, 209 | { 210 | "id": 25, 211 | "order": 78, 212 | "name": "Magic UI", 213 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/magicui", 214 | "link": "https://magicui.design/docs/components/animated-grid-pattern", 215 | "tags": ["Tailwind"] 216 | }, 217 | { 218 | "id": 26, 219 | "order": 90, 220 | "name": "Shader Gradient", 221 | "link": "https://www.shadergradient.co/", 222 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/shadergradient", 223 | "tags": ["React", "Framer", "Figma"] 224 | } 225 | ] 226 | -------------------------------------------------------------------------------- /source-web/src/assets/db/blogs.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 100, 5 | "name": "Josh Comeau", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/josh.webp", 7 | "link": "https://www.joshwcomeau.com", 8 | "tags": ["Web"] 9 | }, 10 | { 11 | "id": 2, 12 | "order": 95, 13 | "name": "DEV", 14 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705068140/freesets/blogs/u1nkrg7tysvugcd8nwy0.webp", 15 | "link": "https://dev.to" 16 | }, 17 | { 18 | "id": 3, 19 | "order": 88, 20 | "name": "Modern CSS", 21 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/moderncss", 22 | "link": "https://moderncss.dev", 23 | "tags": ["CSS"] 24 | }, 25 | { 26 | "id": 4, 27 | "order": 85, 28 | "name": "Medium", 29 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706564504/freesets/blogs/medium", 30 | "link": "https://www.medium.com", 31 | "tags": ["Community"] 32 | }, 33 | { 34 | "id": 5, 35 | "order": 81, 36 | "name": "Rauno Craft", 37 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706403955/freesets/blogs/ypica0qiozuuuamcyk6c.webp", 38 | "link": "https://rauno.me/craft", 39 | "tags": ["UI"] 40 | }, 41 | { 42 | "id": 6, 43 | "order": 80, 44 | "name": "Not a Number", 45 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/nan", 46 | "link": "https://www.nan.fyi", 47 | "tags": ["Animation", "svg"] 48 | }, 49 | { 50 | "id": 7, 51 | "order": 78, 52 | "name": "Maximeheckel", 53 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/maxime", 54 | "link": "https://blog.maximeheckel.com", 55 | "tags": ["Three.js", "React", "3D"] 56 | }, 57 | { 58 | "id": 8, 59 | "order": 76, 60 | "name": "Varun Vachhar", 61 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/varun", 62 | "link": "https://varun.ca/writing/", 63 | "tags": ["Three.js", "3D"] 64 | }, 65 | { 66 | "id": 9, 67 | "order": 70, 68 | "name": "Overreacted", 69 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/overreacted", 70 | "link": "https://overreacted.io", 71 | "tags": ["React", "JavaScript"] 72 | }, 73 | { 74 | "id": 10, 75 | "order": 70, 76 | "name": "CSS-Tricks", 77 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703443444/freesets/blogs/t8ufepbmlyfmcphliioh.webp", 78 | "link": "https://css-tricks.com", 79 | "tags": ["CSS"] 80 | }, 81 | { 82 | "id": 11, 83 | "order": 65, 84 | "name": "Smashing Magazine", 85 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703443742/freesets/blogs/uzktydktlmwcig9xgrtu.webp", 86 | "link": "https://www.smashingmagazine.com" 87 | }, 88 | { 89 | "id": 12, 90 | "order": 40, 91 | "name": "web.dev", 92 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703444856/freesets/blogs/fd6dopnvhkecuooyvrhv.webp", 93 | "link": "https://web.dev/blog" 94 | }, 95 | { 96 | "id": 13, 97 | "order": 40, 98 | "name": "Design Systems", 99 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703459247/freesets/blogs/u4hastncvnhlfdc8iaal.webp", 100 | "link": "https://www.designsystems.com", 101 | "tags": ["Design system"] 102 | }, 103 | { 104 | "id": 14, 105 | "order": 40, 106 | "name": "Hashnode", 107 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706564504/freesets/blogs/hashnode", 108 | "link": "https://www.hashnode.com", 109 | "tags": ["Community"] 110 | }, 111 | { 112 | "id": 15, 113 | "order": 32, 114 | "name": "Design good practices", 115 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706564504/freesets/blogs/cyyuklvwucjn7hrxljfr.webp", 116 | "link": "https://goodpractices.design", 117 | "tags": ["UI/UX"] 118 | }, 119 | { 120 | "id": 16, 121 | "order": 25, 122 | "name": "Paul Scanlon Articles", 123 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703452484/freesets/blogs/qzwz1ulr6yjg9cb8bygn.webp", 124 | "link": "https://www.paulie.dev/articles/", 125 | "tags": ["Three.js"] 126 | }, 127 | { 128 | "id": 17, 129 | "order": 23, 130 | "name": "Patterns.dev", 131 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/mvif3lc9bdwrcjtfgsxh.webp", 132 | "link": "https://www.patterns.dev", 133 | "tags": ["Patterns"] 134 | }, 135 | { 136 | "id": 18, 137 | "order": 20, 138 | "name": "A List Apart", 139 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/alistapart", 140 | "link": "https://www.alistapart.com", 141 | "tags": ["Community"] 142 | }, 143 | { 144 | "id": 19, 145 | "order": 10, 146 | "name": "Sitepoint", 147 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/sitepoint", 148 | "link": "https://www.sitepoint.com", 149 | "tags": ["Learning"] 150 | }, 151 | { 152 | "id": 20, 153 | "order": 8, 154 | "name": "Delba Blog", 155 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/chfpxvalueckpy8uhahk.webp", 156 | "link": "https://delba.dev/blog" 157 | }, 158 | { 159 | "id": 21, 160 | "order": 76, 161 | "name": "Zajno Digital Studio", 162 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/motionzajno.webp", 163 | "link": "https://motion.zajno.com/", 164 | "tags": ["Animation", "Design"] 165 | }, 166 | { 167 | "id": 22, 168 | "order": 75, 169 | "name": "Emil Kowalski", 170 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/milkowalski", 171 | "link": "https://emilkowal.ski/", 172 | "tags": ["Animation", "Design"] 173 | }, 174 | { 175 | "id": 23, 176 | "order": 95, 177 | "name": "Codrops", 178 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/codrops", 179 | "link": "https://tympanus.net/codrops/demos/", 180 | "tags": ["Three.js", "Webgl"] 181 | }, 182 | { 183 | "id": 24, 184 | "order": 80, 185 | "name": "The Shape of AI", 186 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/shapeofai", 187 | "link": "https://www.shapeof.ai/", 188 | "tags": ["AI", "Patterns"] 189 | } 190 | ] 191 | -------------------------------------------------------------------------------- /source-web/src/assets/db/colors.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 100, 5 | "name": "Realtime Colors", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/realtime-colors", 7 | "link": "https://www.realtimecolors.com", 8 | "tags": ["Preview"] 9 | }, 10 | { 11 | "id": 2, 12 | "order": 95, 13 | "name": "AI Colors", 14 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/ai-colors", 15 | "link": "https://tintmint.net", 16 | "tags": ["AI", "Preview"] 17 | }, 18 | { 19 | "id": 3, 20 | "order": 94, 21 | "name": "Color selector", 22 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/color-selector", 23 | "link": "https://www.color-selector.com", 24 | "tags": ["Catalogue"] 25 | }, 26 | { 27 | "id": 4, 28 | "order": 93, 29 | "name": "Coolors", 30 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/coolors", 31 | "link": "https://coolors.co", 32 | "tags": ["Image"] 33 | }, 34 | { 35 | "id": 5, 36 | "order": 93, 37 | "name": "Grabient", 38 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706203980/freesets/colors/g3flh0qgawnbey9te9t2.webp", 39 | "link": "https://www.grabient.com", 40 | "tags": ["Gradients"] 41 | }, 42 | { 43 | "id": 6, 44 | "order": 87, 45 | "name": "hue.tools", 46 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/huetools", 47 | "link": "https://hue.tools/" 48 | }, 49 | { 50 | "id": 7, 51 | "order": 87, 52 | "name": "Picular", 53 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/picular", 54 | "link": "https://picular.co" 55 | }, 56 | { 57 | "id": 8, 58 | "order": 87, 59 | "name": "Color Leap", 60 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706205331/freesets/colors/vlvjtgfchdlyfp0y5hhr.webp", 61 | "link": "https://colorleap.app/" 62 | }, 63 | { 64 | "id": 9, 65 | "order": 87, 66 | "name": "Pigment", 67 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706206051/freesets/colors/mxpvc3dhmnidvwu3hnkq.webp", 68 | "link": "https://pigment.shapefactory.co" 69 | }, 70 | { 71 | "id": 10, 72 | "order": 86, 73 | "name": "Colormind", 74 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/colormind", 75 | "link": "http://colormind.io/" 76 | }, 77 | { 78 | "id": 11, 79 | "order": 86, 80 | "name": "Werner", 81 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706204887/freesets/colors/nlwp5zdb5a92xvkiqakr.webp", 82 | "link": "https://www.c82.net/werner/", 83 | "tags": ["Catalogue"] 84 | }, 85 | { 86 | "id": 12, 87 | "order": 84, 88 | "name": "HueSnap", 89 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706206139/freesets/colors/ilpiojkklmm5indg4niz.webp", 90 | "link": "https://www.huesnap.com", 91 | "tags": ["Image"] 92 | }, 93 | { 94 | "id": 13, 95 | "order": 83, 96 | "name": "Adobe Color", 97 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706202013/freesets/colors/ex9scrdemangoqjif70o.webp", 98 | "link": "https://color.adobe.com/es/create/color-wheel", 99 | "tags": ["Images"] 100 | }, 101 | { 102 | "id": 14, 103 | "order": 82, 104 | "name": "Palette Maker", 105 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/palettemaker", 106 | "link": "https://palettemaker.com/app", 107 | "tags": ["Preview"] 108 | }, 109 | { 110 | "id": 15, 111 | "order": 80, 112 | "name": "Randoma11y", 113 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/randoma11y", 114 | "link": "https://randoma11y.com" 115 | }, 116 | { 117 | "id": 16, 118 | "order": 72, 119 | "name": "WebGradients", 120 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706201464/freesets/colors/f4k7kpstuybqrq5iivep.webp", 121 | "link": "https://webgradients.com", 122 | "tags": ["Gradients"] 123 | }, 124 | { 125 | "id": 17, 126 | "order": 70, 127 | "name": "Palette", 128 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/palette", 129 | "link": "https://palettte.app/" 130 | }, 131 | { 132 | "id": 18, 133 | "order": 68, 134 | "name": "Flat UI Colors", 135 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706203336/freesets/colors/lwhtjq9voxepwbq5vegj.webp", 136 | "link": "https://flatuicolors.com" 137 | }, 138 | { 139 | "id": 19, 140 | "order": 54, 141 | "name": "Material UI", 142 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706201744/freesets/colors/dzigel4p6odtxm6a7vek.webp", 143 | "link": "https://materialui.co/colors" 144 | }, 145 | { 146 | "id": 20, 147 | "order": 50, 148 | "name": "Happy Hues", 149 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703609981/freesets/colors/nqn5hl6bvuoq4wfhvj1j.webp", 150 | "link": "https://www.happyhues.co" 151 | }, 152 | { 153 | "id": 21, 154 | "order": 48, 155 | "name": "tints.dev", 156 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703609895/freesets/colors/xadvbhxlkdnnpjgdl2lk.webp", 157 | "link": "https://www.tints.dev/brand/8C1AE5" 158 | }, 159 | { 160 | "id": 22, 161 | "order": 47, 162 | "name": "Color Hunt", 163 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706203553/freesets/colors/tf04wgbxukm07xo2tinj.webp", 164 | "link": "https://colorhunt.co" 165 | }, 166 | { 167 | "id": 23, 168 | "order": 47, 169 | "name": "Shaper", 170 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707612765/freesets/colors/zjo076mgjflmmbpefkjr.webp", 171 | "link": "https://hihayk.github.io/shaper/" 172 | }, 173 | { 174 | "id": 24, 175 | "order": 46, 176 | "name": "Toptal", 177 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706204167/freesets/colors/jxfys7m34d2ysx1urjqf.webp", 178 | "link": "https://www.toptal.com/designers/colourcode/freebuild-color-builder" 179 | }, 180 | { 181 | "id": 25, 182 | "order": 45, 183 | "name": "UI Colors", 184 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/uicolors", 185 | "link": "https://uicolors.app/create", 186 | "tags": ["Preview"] 187 | }, 188 | { 189 | "id": 26, 190 | "order": 40, 191 | "name": "Poline", 192 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/poline", 193 | "link": "https://meodai.github.io/poline/", 194 | "tags": ["Library"] 195 | }, 196 | { 197 | "id": 27, 198 | "order": 40, 199 | "name": "Khroma", 200 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706205072/freesets/colors/nanohbilxxdv7az375iz.webp", 201 | "link": "https://www.khroma.co" 202 | }, 203 | { 204 | "id": 28, 205 | "order": 37, 206 | "name": "Paletton", 207 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706201622/freesets/colors/bueddeahtc97swuendgx.webp", 208 | "link": "https://www.paletton.com" 209 | }, 210 | { 211 | "id": 29, 212 | "order": 31, 213 | "name": "M.D. Palette Generator", 214 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/h9xk2r0tj0cmem8lrrrq.webp", 215 | "link": "https://materialpalettes.com" 216 | }, 217 | { 218 | "id": 30, 219 | "order": 26, 220 | "name": "Scale", 221 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/o4mxuxdozuahnutgopw5.webp", 222 | "link": "https://hihayk.github.io/scale/" 223 | }, 224 | { 225 | "id": 31, 226 | "order": 22, 227 | "name": "uiGradients", 228 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/oakf9ule9y1chxb8yatt.webp", 229 | "link": "https://uigradients.com/", 230 | "tags": ["Gradients"] 231 | }, 232 | { 233 | "id": 32, 234 | "order": 87, 235 | "name": "Inspotype", 236 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/inspotype", 237 | "link": "https://www.inspotype.com", 238 | "tags": ["Preview"] 239 | }, 240 | { 241 | "id": 33, 242 | "order": 68, 243 | "name": "CSS Gradient", 244 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/css-gradient", 245 | "link": "https://cssgradient.io", 246 | "tags": ["Gradients"] 247 | }, 248 | { 249 | "id": 34, 250 | "order": 65, 251 | "name": "Colorable", 252 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/colorable", 253 | "link": "https://colorable.jxnblk.com", 254 | "tags": ["Preview"] 255 | }, 256 | { 257 | "id": 35, 258 | "order": 66, 259 | "name": "Culrs", 260 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/culrs", 261 | "link": "https://culrs.com", 262 | "tags": ["Palettes"] 263 | }, 264 | { 265 | "id": 36, 266 | "order": 51, 267 | "name": "Cool Contrast", 268 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/coolcontrast", 269 | "link": "https://coolcontrast.vercel.app/", 270 | "tags": ["Preview", "Contrast"] 271 | }, 272 | { 273 | "id": 37, 274 | "order": 90, 275 | "name": "ColorBeta", 276 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/colorbeta", 277 | "link": "https://colorbeta.com/", 278 | "tags": ["Gradients"] 279 | }, 280 | { 281 | "id": 38, 282 | "order": 20, 283 | "name": "ColorHexa", 284 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/colorhexa", 285 | "link": "https://www.colorhexa.com/" 286 | }, 287 | { 288 | "id": 39, 289 | "order": 74, 290 | "name": "ColorMagic", 291 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/colors/colormagic", 292 | "link": "https://colormagic.app/", 293 | "tags": ["Generator", "AI"] 294 | } 295 | ] 296 | -------------------------------------------------------------------------------- /source-web/src/assets/db/components.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 100, 5 | "name": "shadcn/ui", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/shadcn", 7 | "link": "https://ui.shadcn.com", 8 | "tags": ["React", "Tailwind", "Chart"], 9 | "license": "MIT", 10 | "licenseLink": "https://github.com/shadcn-ui/ui/blob/main/LICENSE.md" 11 | }, 12 | { 13 | "id": 2, 14 | "order": 95, 15 | "name": "Radix UI", 16 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/radix", 17 | "link": "https://www.radix-ui.com", 18 | "tags": ["React"], 19 | "license": "MIT", 20 | "licenseLink": "https://github.com/radix-ui/themes#license" 21 | }, 22 | { 23 | "id": 3, 24 | "order": 95, 25 | "name": "NextUI", 26 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703602206/freesets/components/toajvq9dzuq5b41zlhfn.webp", 27 | "link": "https://nextui.org", 28 | "tags": ["Tailwind", "React"], 29 | "license": "MIT", 30 | "licenseLink": "https://github.com/nextui-org/nextui/blob/main/LICENSE" 31 | }, 32 | { 33 | "id": 4, 34 | "order": 92, 35 | "name": "Float UI", 36 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704376726/freesets/components/ztoak6hgzaj7oy0unfsh.webp", 37 | "link": "https://floatui.com", 38 | "tags": ["Tailwind", "React", "Vue", "Svelte", "HTML", "Alpine"] 39 | }, 40 | { 41 | "id": 5, 42 | "order": 85, 43 | "name": "Tailblocks", 44 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703009391/freesets/components/tailblocks.cc__D-720_rg8avy.webp", 45 | "link": "https://tailblocks.cc", 46 | "tags": ["Tailwind", "HTML"], 47 | "license": "MIT", 48 | "licenseLink": "https://github.com/mertJF/tailblocks/blob/master/LICENSE" 49 | }, 50 | { 51 | "id": 6, 52 | "order": 92, 53 | "name": "Component Gallery", 54 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707070156/freesets/components/lom1hgu83gzrtsetjbq3.webp", 55 | "link": "https://component.gallery/components/" 56 | }, 57 | { 58 | "id": 7, 59 | "order": 89, 60 | "name": "Headless UI", 61 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703010009/freesets/components/headlessui.com__D-720_aesaoz.webp", 62 | "link": "https://headlessui.com", 63 | "tags": ["Tailwind", "React", "Vue"], 64 | "license": "MIT", 65 | "licenseLink": "https://github.com/tailwindlabs/headlessui/blob/main/LICENSE" 66 | }, 67 | { 68 | "id": 8, 69 | "order": 87, 70 | "name": "Mantine UI", 71 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703610766/freesets/components/hddhgrr25jrdhysazsyb.webp", 72 | "link": "https://ui.mantine.dev", 73 | "tags": ["React"], 74 | "license": "MIT", 75 | "licenseLink": "https://github.com/mantinedev/ui.mantine.dev/blob/master/LICENCE" 76 | }, 77 | { 78 | "id": 9, 79 | "order": 87, 80 | "name": "Tailus UI", 81 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703008051/freesets/components/tailus.io__zed6xv.webp", 82 | "link": "https://tailus.io", 83 | "tags": ["Tailwind", "HTML"], 84 | "license": "CC", 85 | "licenseLink": "https://github.com/Tailus-UI/blocks?tab=License" 86 | }, 87 | { 88 | "id": 10, 89 | "order": 85, 90 | "name": "Rewind-UI", 91 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703554426/freesets/components/nvz1dnaiskainrmj5kec.webp", 92 | "link": "https://rewind-ui.dev", 93 | "tags": ["React", "Tailwind"], 94 | "license": "MIT", 95 | "licenseLink": "https://github.com/rewindui/rewindui/blob/main/LICENSE" 96 | }, 97 | { 98 | "id": 11, 99 | "order": 85, 100 | "name": "Preline UI", 101 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703601910/freesets/components/dr99a9rkspjafbrqb3bp.webp", 102 | "link": "https://preline.co/", 103 | "tags": ["Tailwind", "HTML", "React", "Vue"], 104 | "license": "MIT", 105 | "licenseLink": "https://github.com/htmlstreamofficial/preline?tab=readme-ov-file#license" 106 | }, 107 | { 108 | "id": 12, 109 | "order": 84, 110 | "name": "HyperUI", 111 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703555425/freesets/components/qij8gxukb0qgx73keqet.webp", 112 | "link": "https://www.hyperui.dev", 113 | "tags": ["Tailwind", "HTML"], 114 | "license": "MIT", 115 | "licenseLink": "https://github.com/markmead/hyperui/blob/main/LICENSE" 116 | }, 117 | { 118 | "id": 13, 119 | "order": 80, 120 | "name": "LangUI", 121 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706404490/freesets/components/fq5eyrvkle6viwojpxj9.webp", 122 | "link": "https://www.langui.dev", 123 | "tags": ["HTML", "Tailwind"] 124 | }, 125 | { 126 | "id": 14, 127 | "order": 79, 128 | "name": "Shadcn for Vue", 129 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705070886/freesets/components/tq8verdcllyichpzjuzx.webp", 130 | "link": "https://www.shadcn-vue.com", 131 | "tags": ["Vue", "Tailwind"], 132 | "license": "MIT", 133 | "licenseLink": "https://github.com/radix-vue/shadcn-vue/blob/dev/LICENSE" 134 | }, 135 | { 136 | "id": 15, 137 | "order": 78, 138 | "name": "daisyUI", 139 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704385880/freesets/components/rww2uufklcug7afxcilt.webp", 140 | "link": "https://daisyui.com", 141 | "tags": ["Tailwind", "HTML"] 142 | }, 143 | { 144 | "id": 16, 145 | "order": 75, 146 | "name": "Windstatic", 147 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703460628/freesets/components/ospblbgczbwzq0xc40mf.webp", 148 | "link": "https://windstatic.com", 149 | "tags": ["Tailwind", "Alpine"] 150 | }, 151 | { 152 | "id": 17, 153 | "order": 75, 154 | "name": "UIverse", 155 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/uiverse", 156 | "link": "https://uiverse.io", 157 | "tags": ["HTML"], 158 | "license": "MIT" 159 | }, 160 | { 161 | "id": 18, 162 | "order": 70, 163 | "name": "Material UI", 164 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703555261/freesets/components/vxnmmwmuaicjux1h16vi.webp", 165 | "link": "https://mui.com/material-ui/", 166 | "tags": ["React"], 167 | "license": "MIT", 168 | "licenseLink": "https://github.com/mui/material-ui/blob/master/LICENSE" 169 | }, 170 | { 171 | "id": 19, 172 | "order": 68, 173 | "name": "Material Tailwind", 174 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703613034/freesets/components/valpasgzusvtdj2x0h55.webp", 175 | "link": "https://www.material-tailwind.com", 176 | "tags": ["React", "HTML", "Remix", "Gatsby", "Tailwind"], 177 | "license": "Freemium", 178 | "licenseLink": "https://www.material-tailwind.com/blocks#pricing" 179 | }, 180 | { 181 | "id": 20, 182 | "order": 68, 183 | "name": "Ark UI", 184 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704376144/freesets/components/ph1zqdxfl6vhdgnpkcmm.webp", 185 | "link": "https://ark-ui.com", 186 | "tags": ["Headless", "React", "Solid", "Vue"], 187 | "license": "MIT", 188 | "licenseLink": "https://github.com/chakra-ui/ark/blob/main/LICENSE" 189 | }, 190 | { 191 | "id": 21, 192 | "order": 64, 193 | "name": "Park UI", 194 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704376342/freesets/components/zzrebeofyyv25lnhkein.webp", 195 | "link": "https://park-ui.com", 196 | "tags": ["React", "Vue", "Solid", "Panda", "Tailwind"], 197 | "license": "MIT", 198 | "licenseLink": "https://github.com/cschroeter/park-ui/blob/main/LICENSE" 199 | }, 200 | { 201 | "id": 22, 202 | "order": 63, 203 | "name": "Wedges", 204 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703794367/freesets/components/bf4phtsmzhlygyejht8y.webp", 205 | "link": "https://www.lemonsqueezy.com/wedges", 206 | "tags": ["React"], 207 | "license": "MIT", 208 | "licenseLink": "https://www.lemonsqueezy.com/wedges" 209 | }, 210 | { 211 | "id": 23, 212 | "order": 62, 213 | "name": "Melt UI", 214 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706404874/freesets/components/uwvpyu1625khiiiygl6c.webp", 215 | "link": "https://melt-ui.com", 216 | "tags": ["Svelte", "Accessible"] 217 | }, 218 | { 219 | "id": 24, 220 | "order": 60, 221 | "name": "Tremor", 222 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/tremor", 223 | "link": "https://www.tremor.so", 224 | "tags": ["Chart", "React"], 225 | "license": "Apache License 2.0", 226 | "licenseLink": "https://github.com/tremorlabs/tremor/blob/main/License" 227 | }, 228 | { 229 | "id": 25, 230 | "order": 58, 231 | "name": "Vuesax", 232 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705078954/freesets/components/vscputhcnpf4c9hcxala.webp", 233 | "link": "https://vuesax.com", 234 | "tags": ["Vue"], 235 | "license": "Free", 236 | "licenseLink": "https://vuesax.com/license/" 237 | }, 238 | { 239 | "id": 26, 240 | "order": 50, 241 | "name": "Chart.js", 242 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/chart.js", 243 | "link": "https://www.chartjs.org", 244 | "tags": ["Chart", "React", "Vue", "Svelte", "Angular"], 245 | "license": "MIT", 246 | "licenseLink": "https://github.com/chartjs/Chart.js/blob/master/LICENSE.md" 247 | }, 248 | { 249 | "id": 27, 250 | "order": 50, 251 | "name": "Sonner", 252 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/sonner", 253 | "link": "https://sonner.emilkowal.ski", 254 | "tags": ["Toast", "React"], 255 | "license": "MIT", 256 | "licenseLink": "https://github.com/emilkowalski/sonner/blob/main/LICENSE.md" 257 | }, 258 | { 259 | "id": 28, 260 | "order": 45, 261 | "name": "Aceternity UI", 262 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703456555/freesets/components/puf7ov5ywajnsdircxmo.webp", 263 | "link": "https://ui.aceternity.com", 264 | "tags": ["React", "Tailwind", "Motion"] 265 | }, 266 | { 267 | "id": 29, 268 | "order": 45, 269 | "name": "LayerChart", 270 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703614228/freesets/components/jz7h94o3obh4l7lxsz2w.webp", 271 | "link": "https://www.layerchart.com", 272 | "tags": ["Svelte", "Chart"], 273 | "license": "MIT", 274 | "licenseLink": "https://github.com/techniq/layerchart/blob/main/LICENSE" 275 | }, 276 | { 277 | "id": 30, 278 | "order": 43, 279 | "name": "Bits UI", 280 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706405281/freesets/components/rkr4fgkftg0ziivvaknb.webp", 281 | "link": "https://www.bits-ui.com/", 282 | "tags": ["Svelte", "Headless"] 283 | }, 284 | { 285 | "id": 31, 286 | "order": 43, 287 | "name": "Angular Material", 288 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706407740/freesets/components/snipm2i3ckqhyxdtvs88.webp", 289 | "link": "https://material.angular.io", 290 | "tags": ["Angular"], 291 | "license": "MIT", 292 | "licenseLink": "https://github.com/angular/components/blob/main/LICENSE" 293 | }, 294 | { 295 | "id": 32, 296 | "order": 40, 297 | "name": "Svelte UX", 298 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/svelte-ux", 299 | "link": "https://svelte-ux.techniq.dev", 300 | "tags": ["Svelte"], 301 | "license": "MIT", 302 | "licenseLink": "https://github.com/techniq/svelte-ux/blob/main/LICENSE" 303 | }, 304 | { 305 | "id": 33, 306 | "order": 40, 307 | "name": "buttons.ibelick", 308 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706405496/freesets/components/virh7entwwa55smst4ol.webp", 309 | "link": "https://buttons.ibelick.com", 310 | "tags": ["Buttons", "Tailwind", "HTML"] 311 | }, 312 | { 313 | "id": 34, 314 | "order": 38, 315 | "name": "3D buttons", 316 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705768856/freesets/components/vxcfat4frzzdbwfqxcvn.webp", 317 | "link": "https://csspro.com/css-3d-buttons/", 318 | "tags": ["3D", "Buttons", "HTML"] 319 | }, 320 | { 321 | "id": 35, 322 | "order": 36, 323 | "name": "Zag", 324 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703612418/freesets/components/elhlvbikjnovlf4yrq49.webp", 325 | "link": "https://zagjs.com", 326 | "tags": ["React", "Vue", "Solid"], 327 | "license": "MIT", 328 | "licenseLink": "https://github.com/chakra-ui/zag/blob/main/LICENSE" 329 | }, 330 | { 331 | "id": 36, 332 | "order": 36, 333 | "name": "Chakra UI", 334 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704821908/freesets/components/qf22qvc0clccdnfkt6ow.webp", 335 | "link": "https://chakra-ui.com", 336 | "tags": ["React"], 337 | "license": "MIT", 338 | "licenseLink": "https://github.com/chakra-ui/chakra-ui?tab=readme-ov-file#license" 339 | }, 340 | { 341 | "id": 37, 342 | "order": 34, 343 | "name": "Pines", 344 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703600134/freesets/components/b3lgwmyj5xzdpdpxvkmx.webp", 345 | "link": "https://devdojo.com/pines", 346 | "tags": ["Tailwind", "Alpine"] 347 | }, 348 | { 349 | "id": 38, 350 | "order": 32, 351 | "name": "TW Elements", 352 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707066379/freesets/components/ftuta4gbmjp08bvjvyjn.webp", 353 | "link": "https://tw-elements.com", 354 | "tags": ["Tailwind"], 355 | "license": "AGPL", 356 | "licenseLink": "https://tw-elements.com/license/", 357 | "licenseDescription": "You can use it for free as long as you open source the entirety of your project. AGPL is \"sticky\" which means you have to apply the same license to any project you build with TWE & open the project to the public." 358 | }, 359 | { 360 | "id": 39, 361 | "order": 30, 362 | "name": "CSS checkboxes", 363 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705769069/freesets/components/wgqjufaceb0fqgaeqebt.webp", 364 | "link": "https://getcssscan.com/css-checkboxes-examples?ref=css-3d-buttons-bottom", 365 | "tags": ["HTML", "Checkboxes"] 366 | }, 367 | { 368 | "id": 40, 369 | "order": 27, 370 | "name": "CSS box-shadow", 371 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705768965/freesets/components/fyvka42qkl8nh136frxm.webp", 372 | "link": "https://getcssscan.com/css-box-shadow-examples", 373 | "tags": ["HTML", "Shadows"] 374 | }, 375 | { 376 | "id": 41, 377 | "order": 26, 378 | "name": "LoaderShip", 379 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707069281/freesets/components/tgovgqfcvl1snnisibtd.webp", 380 | "link": "https://www.loadership.com", 381 | "tags": ["Loaders", "HTML"] 382 | }, 383 | { 384 | "id": 42, 385 | "order": 25, 386 | "name": "Flowbite", 387 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703009841/freesets/components/flowbite.com__D-720_rjocmi.webp", 388 | "link": "https://flowbite.com", 389 | "tags": ["Tailwind", "HTML"], 390 | "license": "Freemium", 391 | "licenseLink": "https://flowbite.com/pro/#pricing" 392 | }, 393 | { 394 | "id": 43, 395 | "order": 20, 396 | "name": "Lightweight charts", 397 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/lightweight-charts", 398 | "link": "https://www.tradingview.com/lightweight-charts/", 399 | "tags": ["Chart"], 400 | "license": "Freemium with attribution", 401 | "licenseLink": "https://tradingview.github.io/lightweight-charts/docs#license-and-attribution" 402 | }, 403 | { 404 | "id": 44, 405 | "order": 20, 406 | "name": "Toggles", 407 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/toggles", 408 | "link": "https://toggles.dev", 409 | "tags": ["Toggles", "HTML"], 410 | "license": "MIT", 411 | "licenseLink": "https://github.com/AlfieJones/theme-toggles/blob/main/LICENSE" 412 | }, 413 | { 414 | "id": 45, 415 | "order": 18, 416 | "name": "tailwindUI", 417 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703601630/freesets/components/ewiat7s397akwrcaxd2f.webp", 418 | "link": "https://tailwindui.com", 419 | "tags": ["Tailwind", "HTML", "React", "Vue"], 420 | "license": "Freemium" 421 | }, 422 | { 423 | "id": 46, 424 | "order": 14, 425 | "name": "Tailwind UI KIT", 426 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703613682/freesets/components/qeeexxul0yg6rostly73.webp", 427 | "link": "https://www.tailwind-kit.com", 428 | "tags": ["Tailwind", "HTML"], 429 | "license": "MIT", 430 | "licenseLink": "https://github.com/Charlie85270/tail-kit/blob/main/LICENCE.md" 431 | }, 432 | { 433 | "id": 47, 434 | "order": 12, 435 | "name": "Hola svg", 436 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/hola-svg", 437 | "link": "https://loaders.holasvg.com", 438 | "tags": ["Loaders"], 439 | "license": "MIT", 440 | "licenseLink": "https://loaders.holasvg.com" 441 | }, 442 | { 443 | "id": 48, 444 | "order": 12, 445 | "name": "LDRS", 446 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703009609/freesets/components/uiball.com_ldrs__D-720_rxbymx.webp", 447 | "link": "https://uiball.com/loaders/", 448 | "tags": ["Loaders"], 449 | "license": "MIT", 450 | "licenseLink": "https://github.com/GriffinJohnston/uiball-loaders/blob/main/LICENSE" 451 | }, 452 | { 453 | "id": 49, 454 | "order": 11, 455 | "name": "10015 Tools", 456 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/css_tools", 457 | "link": "https://10015.io/tools/css-loader-generator", 458 | "tags": ["Loaders"], 459 | "license": "Free", 460 | "licenseLink": "https://10015.io/tools/css-loader-generator" 461 | }, 462 | { 463 | "id": 50, 464 | "order": 10, 465 | "name": "React Responsive Pagination", 466 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703456826/freesets/components/y9vgyzcmtlkzo1jqicxh.webp", 467 | "link": "https://react-responsive-pagination.elantha.com", 468 | "tags": ["Pagination", "React"] 469 | }, 470 | { 471 | "id": 51, 472 | "order": 9, 473 | "name": "SVG Loaders", 474 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/svg-loaders", 475 | "link": "https://samherbert.net/svg-loaders/", 476 | "tags": ["Loaders"], 477 | "license": "MIT", 478 | "licenseLink": "https://github.com/SamHerbert/SVG-Loaders/blob/master/LICENSE.md" 479 | }, 480 | { 481 | "id": 52, 482 | "order": 5, 483 | "name": "CSS loaders", 484 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/css-loaders", 485 | "link": "https://css-loaders.com", 486 | "tags": ["Loaders"] 487 | }, 488 | { 489 | "id": 53, 490 | "order": 3, 491 | "name": "CSS loaders and spinners", 492 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/cssloaders", 493 | "link": "https://cssloaders.github.io", 494 | "tags": ["Loaders"], 495 | "license": "MIT", 496 | "licenseLink": "https://github.com/vineethtrv/css-loader/blob/master/LICENSE" 497 | }, 498 | { 499 | "id": 54, 500 | "order": 44, 501 | "name": "ui.ibelick", 502 | "link": "https://ui.ibelick.com", 503 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/ibelick", 504 | "tags": ["Effects", "React", "Tailwind"] 505 | }, 506 | { 507 | "id": 55, 508 | "order": 30, 509 | "name": "Lobe UI", 510 | "link": "https://ui.lobehub.com", 511 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/lobehub", 512 | "license": "MIT", 513 | "licenseLink": "https://github.com/lobehub/lobe-ui/blob/master/LICENSE" 514 | }, 515 | { 516 | "id": 56, 517 | "order": 10, 518 | "name": "Drams", 519 | "link": "https://drams.framer.website", 520 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/drams", 521 | "tags": ["Framer"] 522 | }, 523 | { 524 | "id": 57, 525 | "order": 39, 526 | "name": "enhanced-button", 527 | "link": "https://enhanced-button.vercel.app/", 528 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/enhanced-button", 529 | "tags": ["Buttons"] 530 | }, 531 | { 532 | "id": 58, 533 | "order": 29, 534 | "name": "Variant Vault", 535 | "link": "https://variantvault.chrisabdo.dev/", 536 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/variantvault", 537 | "tags": ["Animations", "Framer"] 538 | }, 539 | { 540 | "id": 59, 541 | "order": 44, 542 | "name": "PrimeReact", 543 | "link": "https://primereact.org/", 544 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/primereact", 545 | "tags": ["React"] 546 | }, 547 | { 548 | "id": 60, 549 | "order": 29, 550 | "name": "cult/ui", 551 | "link": "https://www.cult-ui.com/", 552 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/cultui", 553 | "tags": ["Tailwind", "React"] 554 | }, 555 | { 556 | "id": 61, 557 | "order": 89, 558 | "name": "Magic UI", 559 | "link": "https://magicui.design/", 560 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/magicui", 561 | "tags": ["Tailwind", "React", "Typescript", "Framer"], 562 | "license": "MIT", 563 | "licenseLink": "https://github.com/magicuidesign/magicui/blob/main/LICENSE.md" 564 | }, 565 | { 566 | "id": 62, 567 | "order": 23, 568 | "name": "AnimatiSS", 569 | "link": "https://xsgames.co/animatiss/", 570 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/animatiss", 571 | "tags": ["Animations", "CSS"] 572 | }, 573 | { 574 | "id": 63, 575 | "order": 95, 576 | "name": "Codrops", 577 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/blogs/codrops", 578 | "link": "https://tympanus.net/codrops/demos/", 579 | "tags": ["Three.js", "Webgl"] 580 | }, 581 | { 582 | "id": 64, 583 | "order": 48, 584 | "name": "Just D", 585 | "link": "https://justd.co/", 586 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/justd", 587 | "tags": ["Accessible", "Aria", "React", "Tailwind"] 588 | }, 589 | { 590 | "id": 65, 591 | "order": 45, 592 | "name": "Tailbits", 593 | "link": "https://www.tailbits.com", 594 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/tailbits", 595 | "license": "CC-BY-4.0", 596 | "licenseDescription": "This project is licensed under the Creative Commons Attribution 4.0 International License. You are free to share and adapt the material for any purpose, even commercially, as long as you provide appropriate credit, a link to the license, and indicate if changes were made.", 597 | "tags": ["Templates","Tailwind", "HTML"] 598 | } 599 | ] 600 | -------------------------------------------------------------------------------- /source-web/src/assets/db/icons.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "name": "Iconify", 5 | "link": "https://icon-sets.iconify.design", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/iconify", 7 | "license": "Multiple", 8 | "licenseLink": "https://iconify.design/#license", 9 | "order": 100 10 | }, 11 | { 12 | "id": 2, 13 | "name": "Google icons", 14 | "link": "https://fonts.google.com/icons", 15 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/google", 16 | "license": "Apache V2.0", 17 | "licenseLink": "https://developers.google.com/fonts/docs/material_icons#licensing", 18 | "order": 98 19 | }, 20 | { 21 | "id": 3, 22 | "name": "Simple Icons", 23 | "link": "https://simpleicons.org", 24 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705765217/freesets/icons/jvhe6jrpy38zrqi6dhvp.webp", 25 | "tags": ["Brands"], 26 | "order": 96 27 | }, 28 | { 29 | "id": 4, 30 | "name": "Tabler icons", 31 | "link": "https://tabler-icons.io", 32 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/tabler", 33 | "license": "MIT", 34 | "licenseLink": "https://github.com/tabler/tabler-icons/blob/master/LICENSE", 35 | "order": 95 36 | }, 37 | { 38 | "id": 5, 39 | "name": "SVG Repo", 40 | "link": "https://www.svgrepo.com", 41 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/svgrepo", 42 | "license": "Multiple", 43 | "licenseLink": "https://www.svgrepo.com/page/licensing", 44 | "order": 95 45 | }, 46 | { 47 | "id": 6, 48 | "name": "Reshot", 49 | "link": "https://www.reshot.com/free-svg-icons/", 50 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704381958/freesets/icons/eum2c2gjrwgwfv7aq3qm.webp", 51 | "license": "Reshot Free License", 52 | "licenseLink": "https://www.reshot.com/license/", 53 | "licenseDescription": "Items under the Reshot Free License can be used in your commercial and non-commercial projects, for free.", 54 | "order": 87 55 | }, 56 | { 57 | "id": 7, 58 | "name": "Radix Icons", 59 | "link": "https://www.radix-ui.com/icons", 60 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705772255/freesets/icons/mzzgjxfoem5kafvfyyhh.webp", 61 | "license": "MIT", 62 | "licenseLink": "https://github.com/radix-ui/icons/blob/master/LICENSE", 63 | "tags": ["Package"], 64 | "order": 87 65 | }, 66 | { 67 | "id": 8, 68 | "name": "Iconoir", 69 | "link": "https://iconoir.com", 70 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705777316/freesets/icons/ruzpsrpudbcvjvqtcv4j.webp", 71 | "license": "MIT", 72 | "licenseLink": "https://github.com/iconoir-icons/iconoir/blob/main/LICENSE", 73 | "order": 86 74 | }, 75 | { 76 | "id": 9, 77 | "name": "Hero Icons", 78 | "link": "https://heroicons.com/", 79 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/heroicons", 80 | "license": "MIT", 81 | "licenseLink": "https://github.com/tailwindlabs/heroicons/blob/master/LICENSE", 82 | "order": 85 83 | }, 84 | { 85 | "id": 10, 86 | "name": "Lucide", 87 | "link": "https://lucide.dev", 88 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/jn6a97pgfb9sq4pa2tzn", 89 | "license": "ISC License", 90 | "licenseLink": "https://lucide.dev/license", 91 | "tags": ["Package"], 92 | "order": 85 93 | }, 94 | { 95 | "id": 11, 96 | "name": "Phosphor", 97 | "link": "https://phosphoricons.com", 98 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/phosphor", 99 | "license": "MIT", 100 | "licenseLink": "https://raw.githubusercontent.com/phosphor-icons/phosphor-home/master/LICENSE", 101 | "tags": ["Package"], 102 | "order": 80 103 | }, 104 | { 105 | "id": 12, 106 | "name": "React Icons", 107 | "link": "https://react-icons.github.io/react-icons/", 108 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/react-icons", 109 | "license": "MIT", 110 | "licenseLink": "https://github.com/react-icons/react-icons/blob/master/LICENSE", 111 | "order": 80, 112 | "tags": ["Package"] 113 | }, 114 | { 115 | "id": 13, 116 | "name": "Remix Icon", 117 | "link": "https://remixicon.com/", 118 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/remixicon", 119 | "license": "Apache License V2.0", 120 | "licenseLink": "https://remixicon.com/license", 121 | "tags": ["Package"], 122 | "order": 77 123 | }, 124 | { 125 | "id": 14, 126 | "name": "Feather Icons", 127 | "link": "https://feathericons.com/", 128 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/feather-icons", 129 | "license": "MIT", 130 | "licenseLink": "https://github.com/feathericons/feather/blob/main/LICENSE", 131 | "order": 77 132 | }, 133 | { 134 | "id": 15, 135 | "name": "Ionicons", 136 | "link": "https://ionic.io/ionicons", 137 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705777616/freesets/icons/cqpb3phdbpbkizotyl0f.webp", 138 | "license": "MIT", 139 | "licenseLink": "https://github.com/ionic-team/ionicons/blob/main/LICENSE", 140 | "tags": ["Package"], 141 | "order": 76 142 | }, 143 | { 144 | "id": 16, 145 | "name": "Eva Icons", 146 | "link": "https://akveo.github.io/eva-icons/", 147 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/evaicons", 148 | "license": "MIT", 149 | "licenseLink": "https://github.com/akveo/eva-icons/blob/master/LICENSE.txt", 150 | "order": 74 151 | }, 152 | { 153 | "id": 17, 154 | "name": "svgl", 155 | "link": "https://svgl.vercel.app", 156 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/svgl", 157 | "license": "MIT", 158 | "licenseLink": "https://github.com/pheralb/svgl/blob/main/LICENSE", 159 | "order": 84 160 | }, 161 | { 162 | "id": 18, 163 | "name": "Font Awesome Icons", 164 | "link": "https://fontawesome.com/icons", 165 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/fontawesome", 166 | "license": "Multiple", 167 | "licenseLink": "https://fontawesome.com/license", 168 | "tags": ["Package"], 169 | "order": 70 170 | }, 171 | { 172 | "id": 19, 173 | "name": "useAnimations", 174 | "link": "https://useanimations.com", 175 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704382354/freesets/icons/ndch8kgt9gb92gaixk9a.webp", 176 | "license": "CC", 177 | "licenseLink": "https://useanimations.com/licencing-and-terms.html", 178 | "licenseDescription": "All the free files available in useAnimations are distributed under Creative Commons (CC) Attribution (BY) unless stated otherwise.", 179 | "tags": ["Animated"], 180 | "order": 70 181 | }, 182 | { 183 | "id": 20, 184 | "name": "MingCute Design", 185 | "link": "https://www.mingcute.com", 186 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705776623/freesets/icons/lgi0vtfqupkfqf5ruvmz.webp", 187 | "license": "Apache 2.0", 188 | "licenseLink": "https://github.com/Richard9394/MingCute/blob/main/LICENSE", 189 | "order": 70 190 | }, 191 | { 192 | "id": 21, 193 | "name": "Carbon", 194 | "link": "https://carbondesignsystem.com/guidelines/icons/library", 195 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705776835/freesets/icons/rvzgmjez12yrvwjigqnn.webp", 196 | "license": "Apache 2.0", 197 | "licenseLink": "https://github.com/carbon-design-system/carbon/blob/main/LICENSE", 198 | "order": 66 199 | }, 200 | { 201 | "id": 22, 202 | "name": "Iconbuddy", 203 | "link": "https://iconbuddy.app", 204 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/iconbuddy", 205 | "license": "Multiple", 206 | "licenseLink": "https://iconbuddy.app", 207 | "order": 60 208 | }, 209 | { 210 | "id": 23, 211 | "name": "Animatedicons", 212 | "link": "https://animatedicons.co/icons", 213 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/animatedicons", 214 | "license": "Free", 215 | "licenseLink": "https://animatedicons.co/license", 216 | "licenseDescription": "You're free to use AnimatedIcons in any project, be it for commercial or personal use, without the need for attribution or any costs", 217 | "tags": ["Animated"], 218 | "order": 60 219 | }, 220 | { 221 | "id": 24, 222 | "name": "CSS Icons", 223 | "link": "https://css.gg/", 224 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/CSSIcons", 225 | "license": "MIT", 226 | "licenseLink": "https://css.gg/doc/licence", 227 | "tags": ["Package"], 228 | "order": 60 229 | }, 230 | { 231 | "id": 25, 232 | "name": "Boxicons", 233 | "link": "https://boxicons.com/", 234 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/boxicons", 235 | "license": "MIT", 236 | "licenseLink": "https://boxicons.com/usage#license", 237 | "order": 55 238 | }, 239 | { 240 | "id": 26, 241 | "name": "Ikonate", 242 | "link": "https://ikonate.com", 243 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/ikonate", 244 | "license": "MIT", 245 | "licenseLink": "https://github.com/mikolajdobrucki/ikonate/blob/master/LICENSE", 246 | "order": 50 247 | }, 248 | { 249 | "id": 27, 250 | "name": "ManyPixels", 251 | "link": "https://www.manypixels.co/gallery", 252 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704385023/freesets/icons/xxyu2syjxgm7twcyegba.webp", 253 | "license": "Free", 254 | "licenseDescription": "You can use the illustrations in any project, commercial or personal without attribution or any costs.", 255 | "licenseLink": "https://www.manypixels.co/terms-of-service", 256 | "order": 50 257 | }, 258 | { 259 | "id": 28, 260 | "name": "Zondicons", 261 | "link": "http://www.zondicons.com/", 262 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/zondicons", 263 | "license": "CC", 264 | "licenseLink": "https://github.com/dukestreetstudio/zondicons/blob/master/LICENSE", 265 | "licenseDescription": "All the free files available in zondicons are distributed under Creative Commons (CC) Attribution (BY) unless stated otherwise.", 266 | "order": 50 267 | }, 268 | { 269 | "id": 29, 270 | "name": "ICONSVG", 271 | "link": "https://iconsvg.xyz", 272 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704820992/freesets/icons/lq4ll4tgmsdzhe4ysibx.webp", 273 | "license": "MIT", 274 | "licenseLink": "https://iconsvg.xyz", 275 | "order": 30 276 | }, 277 | { 278 | "id": 30, 279 | "name": "Streamline Icons", 280 | "link": "https://www.streamlinehq.com", 281 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/streamline", 282 | "license": "CC by 4.0", 283 | "licenseLink": "https://www.streamlinehq.com/license-free", 284 | "order": 46 285 | }, 286 | { 287 | "id": 31, 288 | "name": "TDesign Icons", 289 | "link": "https://tdesign.tencent.com/design/icon", 290 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705777927/freesets/icons/p16gzcdv7iacvdnud2ch.webp", 291 | "license": "MIT", 292 | "licenseLink": "https://github.com/Tencent/tdesign-icons/blob/main/LICENSE", 293 | "order": 46 294 | }, 295 | { 296 | "id": 32, 297 | "name": "3D Icons", 298 | "link": "https://3dicons.co/", 299 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/hh9zkxpnfjckvekzz0ey", 300 | "license": "CC0", 301 | "licenseLink": "https://3dicons.co/?ref=lapaninja", 302 | "tags": ["3D"], 303 | "order": 45 304 | }, 305 | { 306 | "id": 33, 307 | "order": 78, 308 | "name": "Mage Icons", 309 | "link": "https://mageicons.com/", 310 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/mageicons", 311 | "license": "Apache 2.0", 312 | "licenseLink": "https://github.com/Mage-Icons/mage-icons/blob/main/License.txt", 313 | "tags": ["Package"] 314 | }, 315 | { 316 | "id": 34, 317 | "name": "Iconmonstr", 318 | "link": "https://iconmonstr.com", 319 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/iconmonstr", 320 | "license": "Free", 321 | "licenseLink": "https://iconmonstr.com/license/", 322 | "licenseDescription": "License may use the Work in non-commercial and commercial projects, services or products without attribution.", 323 | "order": 40 324 | }, 325 | { 326 | "id": 35, 327 | "name": "Drawkit", 328 | "link": "https://www.drawkit.com/illustration-types/icons", 329 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/quqeaqpdwrr9pfl7syvz", 330 | "license": "DrawKit License", 331 | "licenseLink": "https://www.drawkit.com/license", 332 | "licenseDescription": "Free for Personal and Commercial. No attribution required.", 333 | "tags": ["3D"], 334 | "order": 40 335 | }, 336 | { 337 | "id": 36, 338 | "name": "Basicons", 339 | "link": "https://basicons.xyz", 340 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704821116/freesets/icons/iugy1xeoa4h1rk0xopit.webp", 341 | "license": "MIT", 342 | "licenseLink": "https://github.com/solomon-fibonacci/react-basicons/blob/main/LICENSE", 343 | "tags": ["Package"], 344 | "order": 40 345 | }, 346 | { 347 | "id": 37, 348 | "name": "Clarity", 349 | "link": "https://clarity.design/documentation/icons/shapes", 350 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705778097/freesets/icons/ldvm1lc29yfknxdzzm1a.webp", 351 | "license": "MIT", 352 | "licenseLink": "https://github.com/vmware/clarity-assets/blob/master/LICENSE", 353 | "order": 38 354 | }, 355 | { 356 | "id": 38, 357 | "name": "Core UI Icons", 358 | "link": "https://coreui.io/icons/", 359 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/coreuiicons", 360 | "license": "Freemium", 361 | "licenseLink": "https://coreui.io/icons/pricing/", 362 | "tags": ["Package"], 363 | "order": 35 364 | }, 365 | { 366 | "id": 39, 367 | "name": "Unicorn icons", 368 | "link": "https://unicornicons.com", 369 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/ocpqwxgjvphvpk6b44ed", 370 | "license": "Unicorn icons License", 371 | "licenseLink": "https://unicornicons.com/license", 372 | "licenseDescription": "Free with attribution", 373 | "tags": ["Animated"], 374 | "order": 35 375 | }, 376 | { 377 | "id": 40, 378 | "name": "Bootstrap Icons", 379 | "link": "https://icons.getbootstrap.com/", 380 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/bootstrap", 381 | "license": "MIT", 382 | "licenseLink": "https://github.com/twbs/bootstrap/blob/main/LICENSE", 383 | "tags": ["Package"], 384 | "order": 30 385 | }, 386 | { 387 | "id": 41, 388 | "name": "Teenyicons", 389 | "link": "https://teenyicons.com/", 390 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/teenyicons", 391 | "license": "MIT", 392 | "licenseLink": "https://github.com/teenyicons/teenyicons/blob/master/LICENSE", 393 | "order": 25 394 | }, 395 | { 396 | "id": 42, 397 | "name": "Sargam Icons", 398 | "link": "https://sargamicons.com", 399 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/sargamicons", 400 | "license": "MIT", 401 | "licenseLink": "https://github.com/planetabhi/sargam-icons/blob/main/LICENSE.txt", 402 | "order": 41 403 | }, 404 | { 405 | "id": 43, 406 | "name": "Keyicons", 407 | "link": "https://keyicons.com", 408 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/keyicons", 409 | "license": "CC BY 4.0", 410 | "licenseLink": "https://keyicons.com", 411 | "order": 20 412 | }, 413 | { 414 | "id": 44, 415 | "name": "Zwicon", 416 | "link": "http://zwicon.com", 417 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/zwicon", 418 | "license": "CC BY-ND 4.0", 419 | "licenseLink": "http://zwicon.com/how-to-use.html", 420 | "order": 20 421 | }, 422 | { 423 | "id": 45, 424 | "name": "Notion-style Icons", 425 | "link": "https://maryamato88.gumroad.com/l/pbmkt", 426 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703028113/freesets/icons/Notion_Style_Icons_kpixkv.webp", 427 | "license": "Free", 428 | "licenseDescription": "Use on unlimited personal and commercial projects", 429 | "tags": ["Scribble"], 430 | "order": 20 431 | }, 432 | { 433 | "id": 46, 434 | "name": "Flagpack", 435 | "link": "https://flagpack.xyz", 436 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/w4emtntc7owwt8bu4etm", 437 | "license": "Free", 438 | "licenseLink": "https://flagpack.xyz/support", 439 | "licenseDescription": "you can Flagpack for any project; commercial or personal. Flagpack is open source and can be used, changed and shared", 440 | "tags": ["Flags"], 441 | "order": 18 442 | }, 443 | { 444 | "id": 47, 445 | "name": "Grumpyicons", 446 | "link": "https://www.petrbilek.com/products/grumpyicons", 447 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/eelqaxmso9pbbfstgl5z", 448 | "license": "Free", 449 | "licenseLink": "https://www.petrbilek.com/docs/license", 450 | "licenseDescription": "Free for personal and commercial projects. No attribution required.", 451 | "tags": ["Scribble"], 452 | "order": 17 453 | }, 454 | { 455 | "id": 48, 456 | "name": "Icon Freebies Glimsy", 457 | "link": "https://orenjistudio.gumroad.com/l/glimsy", 458 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703027910/freesets/icons/Glimsy_bwpu4k.webp", 459 | "license": "Free", 460 | "order": 15 461 | }, 462 | { 463 | "id": 49, 464 | "name": "Line Icon Pack", 465 | "link": "https://www.petrbilek.com/products/line-icon-pack", 466 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/l4zhbu6rb8yde0ckdnv2", 467 | "license": "Free", 468 | "licenseLink": "https://www.petrbilek.com/docs/license", 469 | "licenseDescription": "Free for personal and commercial projects. No attribution required.", 470 | "order": 15 471 | }, 472 | { 473 | "id": 50, 474 | "name": "Tilda Icons", 475 | "link": "https://tilda.cc/free-icons/", 476 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704382565/freesets/icons/dxhlcgkgwque1gddimtd.webp", 477 | "license": "Free with attribution", 478 | "licenseLink": "https://tilda.cc/free-icons/license/", 479 | "licenseDescription": "The Licensee can use the Icons for free for personal or commercial projects as long as the\nLicensee mentions the owner of the Icons. ", 480 | "order": 15 481 | }, 482 | { 483 | "id": 51, 484 | "name": "Noun Project", 485 | "link": "https://thenounproject.com/icons/", 486 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/g4ovyr2rjrlb7l5kqggf", 487 | "license": "Freemium", 488 | "licenseLink": "https://thenounproject.com/pricing/#icons", 489 | "licenseDescription": "Free with attribution", 490 | "order": 10 491 | }, 492 | { 493 | "id": 52, 494 | "name": "IconaMoon", 495 | "link": "https://www.figma.com/community/file/1014143897459418663", 496 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705776986/freesets/icons/ubb1mslpo6luz1pivm0n.webp", 497 | "license": "CC BY 4.0", 498 | "order": 7 499 | }, 500 | { 501 | "id": 53, 502 | "name": "Solar", 503 | "link": "https://www.figma.com/community/file/1166831539721848736", 504 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705776270/freesets/icons/g5k7wqiikvrxcmevnhet.webp", 505 | "license": "CC BY 4.0", 506 | "order": 6 507 | }, 508 | { 509 | "id": 54, 510 | "name": "Icon Icons", 511 | "link": "https://icon-icons.com", 512 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/icon-icons", 513 | "license": "Free", 514 | "licenseLink": "https://icon-icons.com/license", 515 | "licenseDescription": "Free for personal or commercial use as long as the owner of the icons is mentioned.", 516 | "order": 6 517 | }, 518 | { 519 | "id": 55, 520 | "name": "FlatIcon", 521 | "link": "https://www.flaticon.com/", 522 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/flaticon", 523 | "license": "Freemium", 524 | "licenseLink": "https://support.flaticon.com/s/topic/0TO3V000000CmIxWAK/licenses?language=en_US", 525 | "licenseDescription": "Free for personal or commercial use as long as the owner of the icons is mentioned.", 526 | "order": 6 527 | }, 528 | { 529 | "id": 56, 530 | "name": "Iconscout", 531 | "link": "https://iconscout.com/icons", 532 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/iconscout", 533 | "license": "Freemium", 534 | "licenseLink": "https://iconscout.com/pricing", 535 | "tags": ["Package"], 536 | "order": 5 537 | }, 538 | { 539 | "id": 57, 540 | "name": "Untitled UI Icons", 541 | "link": "https://www.untitledui.com/icons", 542 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/u0vnq5jvrwli4mzr4dl0", 543 | "license": "Freemium", 544 | "licenseLink": "https://www.untitledui.com/pricing", 545 | "order": 1 546 | }, 547 | { 548 | "id": 58, 549 | "name": "Majesticons", 550 | "link": "https://www.majesticons.com", 551 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/majesticons", 552 | "license": "MIT", 553 | "licenseLink": "https://github.com/halfmage/majesticons/blob/main/LICENSE", 554 | "order": 29 555 | }, 556 | { 557 | "id": 59, 558 | "order": 11, 559 | "name": "Gravity UI", 560 | "link": "https://preview.gravity-ui.com/icons/", 561 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/gravity-ui", 562 | "license": "MIT", 563 | "licenseLink": "https://github.com/gravity-ui/icons/blob/main/LICENSE", 564 | "tags": ["Package", "React"] 565 | }, 566 | { 567 | "id": 60, 568 | "order": 8, 569 | "name": "Octicons", 570 | "link": "https://primer.style/foundations/icons", 571 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/octicons", 572 | "license": "MIT", 573 | "licenseLink": "https://github.com/primer/octicons/blob/main/LICENSE", 574 | "tags": ["Package"] 575 | }, 576 | { 577 | "id": 61, 578 | "order": 15, 579 | "name": "SVG Flag Icons", 580 | "link": "https://nucleoapp.com/svg-flag-icons", 581 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/svg-flag-icons", 582 | "tags": ["Flags"] 583 | }, 584 | { 585 | "id": 62, 586 | "order": 13, 587 | "name": "Unicons", 588 | "link": "https://iconscout.com/unicons", 589 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/unicons", 590 | "license": "Freemium", 591 | "licenseLink": "https://iconscout.com/pricing", 592 | "tags": ["Package"] 593 | }, 594 | { 595 | "id": 63, 596 | "order": 13, 597 | "name": "Iconic", 598 | "link": "https://iconic.app/", 599 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/iconic", 600 | "license": "Free", 601 | "licenseLink": "https://iconic.app/iconic-pro-license/" 602 | } 603 | ] 604 | -------------------------------------------------------------------------------- /source-web/src/assets/db/inspirations.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 80, 5 | "name": "Curated Design", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/curated-design", 7 | "link": "https://www.curated.design" 8 | }, 9 | { 10 | "id": 2, 11 | "order": 98, 12 | "name": "Godly", 13 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/godly", 14 | "link": "https://godly.website" 15 | }, 16 | { 17 | "id": 3, 18 | "order": 78, 19 | "name": "Laand-book", 20 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/land-book", 21 | "link": "https://land-book.com", 22 | "licence": "Freemium", 23 | "licenceLink": "https://land-book.com/pro" 24 | }, 25 | { 26 | "id": 4, 27 | "order": 90, 28 | "name": "BentoGrids", 29 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/bentogrids", 30 | "link": "https://bentogrids.com" 31 | }, 32 | { 33 | "id": 5, 34 | "order": 80, 35 | "name": "Darkmode Design", 36 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/darkmodedesign", 37 | "link": "https://www.darkmodedesign.com" 38 | }, 39 | { 40 | "id": 6, 41 | "order": 80, 42 | "name": "Dark Design", 43 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/darkdesign", 44 | "link": "https://www.dark.design" 45 | }, 46 | { 47 | "id": 7, 48 | "order": 78, 49 | "name": "Landing Love", 50 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/landing-love", 51 | "link": "https://www.landing.love" 52 | }, 53 | { 54 | "id": 8, 55 | "order": 76, 56 | "name": "Minimal Gallery", 57 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706407304/freesets/inspirations/cindmoknr2lysvna4iwj.webp", 58 | "link": "https://minimal.gallery" 59 | }, 60 | { 61 | "id": 9, 62 | "order": 73, 63 | "name": "MaxiBestOf", 64 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704381293/freesets/inspirations/ndgtbollo4dhqqt3kowy.webp", 65 | "link": "https://maxibestof.one" 66 | }, 67 | { 68 | "id": 10, 69 | "order": 70, 70 | "name": "Pinterest", 71 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/pinterest", 72 | "link": "https://pinterest.com/" 73 | }, 74 | { 75 | "id": 11, 76 | "order": 70, 77 | "name": "Landing Gallery", 78 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704381074/freesets/inspirations/o8kszgfesntegltgoxwf.webp", 79 | "link": "https://www.landing.gallery" 80 | }, 81 | { 82 | "id": 12, 83 | "order": 64, 84 | "name": "InspoVault", 85 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707066801/freesets/inspirations/udgbsgzh5sr6ytdiyx1g.webp", 86 | "link": "https://www.inspovault.com" 87 | }, 88 | { 89 | "id": 13, 90 | "order": 60, 91 | "name": "Dribbble", 92 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/dribbble", 93 | "link": "https://dribbble.com/" 94 | }, 95 | { 96 | "id": 14, 97 | "order": 60, 98 | "name": "Behance", 99 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/behance", 100 | "link": "https://www.behance.net/" 101 | }, 102 | { 103 | "id": 15, 104 | "order": 40, 105 | "name": "a-fresh", 106 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706407151/freesets/inspirations/qkca9a1zqyzcs2c6vaeo.webp", 107 | "link": "https://a-fresh.website" 108 | }, 109 | { 110 | "id": 16, 111 | "order": 22, 112 | "name": "Layers", 113 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707067044/freesets/inspirations/zfqj3ezli1xkq5bkpoep.webp", 114 | "link": "https://layers.to/" 115 | }, 116 | { 117 | "id": 17, 118 | "order": 20, 119 | "name": "Three.js", 120 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/threejs", 121 | "link": "https://threejs.org", 122 | "tags": ["3D"] 123 | }, 124 | { 125 | "id": 18, 126 | "order": 15, 127 | "name": "Awwwards", 128 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/awwwards", 129 | "link": "https://www.awwwards.com/websites/" 130 | }, 131 | { 132 | "id": 19, 133 | "order": 19, 134 | "name": "Sass Landing Page", 135 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/saaslandingpage", 136 | "link": "https://saaslandingpage.com" 137 | }, 138 | { 139 | "id": 20, 140 | "order": 55, 141 | "name": "Navbar Gallery", 142 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/navbargallery", 143 | "link": "https://www.navbar.gallery", 144 | "tags": ["Navbars"] 145 | }, 146 | { 147 | "id": 21, 148 | "order": 87, 149 | "name": "Unsection", 150 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/unsection", 151 | "link": "https://www.unsection.com" 152 | }, 153 | { 154 | "id": 22, 155 | "order": 57, 156 | "name": "404s", 157 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/404s", 158 | "link": "https://www.404s.design/", 159 | "tags": ["404"] 160 | }, 161 | { 162 | "id": 23, 163 | "order": 80, 164 | "name": "HUDS+GUIS", 165 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/hudsandguis", 166 | "link": "https://www.hudsandguis.com" 167 | }, 168 | { 169 | "id": 24, 170 | "order": 4, 171 | "name": "Design Vault", 172 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/designvault", 173 | "link": "https://designvault.io/" 174 | }, 175 | { 176 | "id": 25, 177 | "order": 30, 178 | "name": "lookup.design", 179 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/lookupdesign", 180 | "link": "https://lookup.design/" 181 | }, 182 | { 183 | "id": 26, 184 | "order": 38, 185 | "name": "CallToInspiration", 186 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/calltoinspiration", 187 | "link": "https://calltoinspiration.com/" 188 | }, 189 | { 190 | "id": 27, 191 | "order": 86, 192 | "name": "Design Spells", 193 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/designspells", 194 | "link": "https://www.designspells.com/" 195 | }, 196 | { 197 | "id": 28, 198 | "order": 75, 199 | "name": "Httpster", 200 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/httpster", 201 | "link": "https://httpster.net/" 202 | }, 203 | { 204 | "id": 29, 205 | "order": 20, 206 | "name": "OGimage.gallery", 207 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/ogimage", 208 | "link": "https://www.ogimage.gallery/" 209 | }, 210 | { 211 | "id": 30, 212 | "order": 28, 213 | "name": "Siteinspire", 214 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/siteinspire", 215 | "link": "https://www.siteinspire.com/" 216 | }, 217 | { 218 | "id": 31, 219 | "order": 49, 220 | "name": "ArchDaily", 221 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/archdaily", 222 | "link": "https://www.archdaily.com/", 223 | "tags": ["Architecture"] 224 | }, 225 | { 226 | "id": 32, 227 | "order": 32, 228 | "name": "Site of Sites", 229 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/siteofsites", 230 | "link": "https://www.siteofsites.co/" 231 | }, 232 | { 233 | "id": 33, 234 | "order": 45, 235 | "name": "LogoFav", 236 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/logofav", 237 | "link": "https://www.logofav.com/", 238 | "tags": ["Logos"] 239 | }, 240 | { 241 | "id": 34, 242 | "order": 30, 243 | "name": "Dead Simple Sites", 244 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/deadsimplesites", 245 | "link": "https://deadsimplesites.com/" 246 | }, 247 | { 248 | "id": 35, 249 | "order": 85, 250 | "name": "Wall of Portfolios", 251 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/wallofportfolios", 252 | "link": "https://www.wallofportfolios.in/" 253 | }, 254 | { 255 | "id": 36, 256 | "order": 52, 257 | "name": "Footer", 258 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/footer", 259 | "link": "https://www.footer.design/", 260 | "tags": ["Footers"] 261 | }, 262 | { 263 | "id": 37, 264 | "order": 55, 265 | "name": "Prettyfolio", 266 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/prettyfolio", 267 | "link": "https://www.prettyfolio.com/", 268 | "tags": ["Portfolios"] 269 | }, 270 | { 271 | "id": 38, 272 | "order": 48, 273 | "name": "illustrations universe", 274 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/illustrations/universe", 275 | "link": "https://illustrationsuniverse.com/", 276 | "tags": ["Illustrations"] 277 | }, 278 | { 279 | "id": 39, 280 | "order": 61, 281 | "name": "Design Everywhere", 282 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/designeverywhere", 283 | "link": "https://designeverywhere.co/", 284 | "tags": ["Products"] 285 | }, 286 | { 287 | "id": 40, 288 | "order": 78, 289 | "name": "Browsing Mode", 290 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/browsingmode", 291 | "link": "https://browsingmode.com/" 292 | }, 293 | { 294 | "id": 41, 295 | "order": 46, 296 | "name": "App Motion", 297 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/appmotion", 298 | "link": "https://appmotion.design/" 299 | }, 300 | { 301 | "id": 42, 302 | "order": 58, 303 | "name": "Commerce Cream", 304 | "link": "https://commercecream.com/", 305 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/commercecream", 306 | "tags": ["Shopify"] 307 | }, 308 | { 309 | "id": 43, 310 | "order": 64, 311 | "name": "One Page Love", 312 | "link": "https://onepagelove.com/", 313 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/onepagelove" 314 | }, 315 | { 316 | "id": 44, 317 | "order": 38, 318 | "name": "3D Websites", 319 | "link": "https://3dwebsites.design/", 320 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/3dwebsites", 321 | "tags": ["3D"] 322 | }, 323 | { 324 | "id": 45, 325 | "order": 85, 326 | "name": "Web Interactions Gallery", 327 | "link": "https://www.webinteractions.gallery/", 328 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/webinteractions" 329 | }, 330 | { 331 | "id": 46, 332 | "order": 10, 333 | "name": "Viewport UI", 334 | "link": "https://viewport-ui.design/", 335 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/viewport-ui" 336 | }, 337 | { 338 | "id": 47, 339 | "order": 67, 340 | "name": "Logo System", 341 | "link": "https://logosystem.co/", 342 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/logosystem", 343 | "tags": ["Logos"] 344 | }, 345 | { 346 | "id": 48, 347 | "order": 56, 348 | "name": "Adfolio", 349 | "link": "https://www.adfolio.design/", 350 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/adfolio", 351 | "tags": ["Ads"] 352 | }, 353 | { 354 | "id": 49, 355 | "order": 38, 356 | "name": "Landings", 357 | "link": "https://landings.dev/", 358 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/inspirations/landingsdev" 359 | } 360 | ] 361 | -------------------------------------------------------------------------------- /source-web/src/assets/db/libraries.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 96, 5 | "name": "Matter.js", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703714061/freesets/libraries/umlx1hgt8bjycqzwpqqj.webp", 7 | "link": "https://brm.io/matter-js/", 8 | "tags": ["Physics"] 9 | }, 10 | { 11 | "id": 2, 12 | "order": 88, 13 | "name": "react-magic-motion", 14 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/react-magic-motion", 15 | "link": "https://www.react-magic-motion.com", 16 | "tags": ["Animation", "React"], 17 | "license": "MIT" 18 | }, 19 | { 20 | "id": 3, 21 | "order": 80, 22 | "name": "useHooks", 23 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703461359/freesets/libraries/cnxclmmyt8gkenlzjhsw.webp", 24 | "link": "https://usehooks.com", 25 | "tags": ["Hooks"] 26 | }, 27 | { 28 | "id": 4, 29 | "order": 70, 30 | "name": "AutoAnimate", 31 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703722122/freesets/libraries/x1cx4uqv29hd6ylowwcv.webp", 32 | "link": "https://auto-animate.formkit.com", 33 | "tags": ["Animations"], 34 | "license": "MIT", 35 | "licenseLink": "https://github.com/formkit/auto-animate/blob/master/LICENSE" 36 | }, 37 | { 38 | "id": 5, 39 | "order": 67, 40 | "name": "Mousetrap", 41 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707069869/freesets/libraries/b4uluaeygy8jpnk2flzs.webp", 42 | "link": "https://craig.is/killing/mice", 43 | "tags": ["Keyboard shortcuts"] 44 | }, 45 | { 46 | "id": 6, 47 | "order": 67, 48 | "name": "next-video", 49 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/next-video", 50 | "link": "https://next-video.dev", 51 | "tags": ["Video", "Next.js"], 52 | "license": "MIT" 53 | }, 54 | { 55 | "id": 7, 56 | "order": 67, 57 | "name": "Luxon", 58 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703714373/freesets/libraries/zzq11qc4dh3byrn2g1o1.webp", 59 | "link": "https://moment.github.io/luxon/", 60 | "tags": ["Time", "Dates"] 61 | }, 62 | { 63 | "id": 8, 64 | "order": 48, 65 | "name": "GSAP", 66 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703722231/freesets/libraries/y0vnr0nzd18wdbsg1lkz.webp", 67 | "link": "https://gsap.com", 68 | "tags": ["Animations"] 69 | }, 70 | { 71 | "id": 9, 72 | "order": 45, 73 | "name": "react-spring", 74 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703722374/freesets/libraries/qp1ugsdvlw1umw7ozp7d.webp", 75 | "link": "https://www.react-spring.dev", 76 | "tags": ["Animations", "React"] 77 | }, 78 | { 79 | "id": 10, 80 | "order": 45, 81 | "name": "Locomotive Scroll", 82 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703460989/freesets/libraries/c624lahc77sg5fgo1eaq.webp", 83 | "link": "https://locomotivemtl.github.io/locomotive-scroll/", 84 | "tags": ["Scroll"] 85 | }, 86 | { 87 | "id": 11, 88 | "order": 43, 89 | "name": "Vaul", 90 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703716210/freesets/libraries/xzlo82pgowtivmpjxdlk.webp", 91 | "link": "https://vaul.emilkowal.ski", 92 | "tags": ["Drawer", "React"], 93 | "license": "MIT", 94 | "licenseLink": "https://github.com/emilkowalski/vaul/blob/main/LICENSE.md" 95 | }, 96 | { 97 | "id": 12, 98 | "order": 40, 99 | "name": "Atropos", 100 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703715783/freesets/libraries/fnn0q2erzzpqkyhrzckk.webp", 101 | "link": "https://atroposjs.com", 102 | "tags": ["Parallax"] 103 | }, 104 | { 105 | "id": 13, 106 | "order": 40, 107 | "name": "Sandpack", 108 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703721779/freesets/libraries/pd8lyjpwf79zercchctr.webp", 109 | "link": "https://sandpack.codesandbox.io", 110 | "tags": ["Live coding"], 111 | "license": "Apache License 2.0", 112 | "licenseLink": "https://github.com/codesandbox/sandpack" 113 | }, 114 | { 115 | "id": 14, 116 | "order": 39, 117 | "name": "Framer Motion", 118 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703721531/freesets/libraries/mwfnikeq6pgt2y8xeeuu.webp", 119 | "link": "https://www.framer.com/motion/", 120 | "tags": ["Animations", "React"], 121 | "license": "MIT", 122 | "licenseLink": "https://github.com/framer/motion?tab=readme-ov-file#%EF%B8%8F-license" 123 | }, 124 | { 125 | "id": 15, 126 | "order": 37, 127 | "name": "RoughNotation", 128 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703716041/freesets/libraries/xywhclwf3zv29jtmppkf.webp", 129 | "link": "https://roughnotation.com", 130 | "tags": ["Annotations"], 131 | "license": "MIT", 132 | "licenseLink": "https://github.com/rough-stuff/rough-notation/blob/master/LICENSE" 133 | }, 134 | { 135 | "id": 16, 136 | "order": 35, 137 | "name": "lightGallery", 138 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705093204/freesets/libraries/gbvshhwql1vuevniicae.webp", 139 | "link": "https://www.lightgalleryjs.com", 140 | "tags": ["Image gallery"] 141 | }, 142 | { 143 | "id": 17, 144 | "order": 34, 145 | "name": "PhotoSwipe", 146 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705093099/freesets/libraries/p4tly9q7bbbnseutl1al.webp", 147 | "link": "https://photoswipe.com", 148 | "tags": ["Image gallery"] 149 | }, 150 | { 151 | "id": 18, 152 | "order": 34, 153 | "name": "Plyr", 154 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703722052/freesets/libraries/vnzjqkvjkko8oynzkvoa.webp", 155 | "link": "https://plyr.io", 156 | "tags": ["Media player"], 157 | "license": "MIT", 158 | "licenseLink": "https://github.com/sampotts/plyr/blob/master/LICENSE.md" 159 | }, 160 | { 161 | "id": 19, 162 | "order": 30, 163 | "name": "FilePond", 164 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703715871/freesets/libraries/eadtlmvs1fn45whzka3p.webp", 165 | "link": "https://pqina.nl/filepond/", 166 | "tags": ["Uploads"], 167 | "license": "MIT", 168 | "licenseLink": "https://github.com/pqina/filepond/blob/master/LICENSE" 169 | }, 170 | { 171 | "id": 20, 172 | "order": 25, 173 | "name": "yup", 174 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703721354/freesets/libraries/vf3bljcv8cw7nklk3s1o.webp", 175 | "link": "https://github.com/jquense/yup", 176 | "tags": ["Form validation"], 177 | "license": "MIT", 178 | "licenseLink": "https://github.com/jquense/yup/blob/master/LICENSE.md" 179 | }, 180 | { 181 | "id": 21, 182 | "order": 45, 183 | "name": "Tempo", 184 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/tempo", 185 | "link": "https://tempo.formkit.com", 186 | "tags": ["Time", "Dates"], 187 | "license": "MIT", 188 | "licenseLink": "https://github.com/formkit/tempo/blob/main/LICENSE" 189 | }, 190 | { 191 | "id": 22, 192 | "order": 39, 193 | "name": "Editor.js", 194 | "link": "https://editorjs.io", 195 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/editorjs", 196 | "tags": ["Block-style editor"], 197 | "license": "Apache License 2.0", 198 | "licenseLink": "https://github.com/codex-team/editor.js/blob/next/LICENSE" 199 | }, 200 | { 201 | "id": 23, 202 | "order": 46, 203 | "name": "tldraw SDK", 204 | "link": "https://editorjs.io", 205 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/tldraw", 206 | "tags": ["Infinite canvas"], 207 | "license": "tldraw license", 208 | "licenseLink": "https://tldraw.dev/community/license", 209 | "licenseDescription": "\"This license does not permit commercial use. If you wish to use tldraw in a commercial product or enterprise, you will need to purchase a commercial license.\"" 210 | }, 211 | { 212 | "id": 24, 213 | "order": 52, 214 | "name": "Driver.js", 215 | "link": "https://driverjs.com", 216 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/driverjs", 217 | "tags": ["Drive user's focus"], 218 | "license": "MIT", 219 | "licenseLink": "https://github.com/kamranahmedse/driver.js/blob/master/license" 220 | }, 221 | { 222 | "id": 25, 223 | "order": 40, 224 | "name": "Tilt", 225 | "link": "https://jdion.xyz/tilt", 226 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/tilt", 227 | "tags": ["Parallax"], 228 | "license": "MIT", 229 | "licenseLink": "https://github.com/jonathandion/mono/blob/main/LICENSE" 230 | }, 231 | { 232 | "id": 26, 233 | "order": 43, 234 | "name": "swup", 235 | "link": "https://swup.js.org/", 236 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/swup", 237 | "tags": ["Transitions for server-rendered pages"], 238 | "license": "MIT", 239 | "licenseLink": "https://github.com/swup/swup/blob/master/LICENSE" 240 | }, 241 | { 242 | "id": 27, 243 | "order": 33, 244 | "name": "React Google Maps", 245 | "link": "https://visgl.github.io/react-google-maps/", 246 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/react-google-maps", 247 | "license": "MIT", 248 | "licenseLink": "https://github.com/visgl/react-google-maps/blob/main/LICENSE.md", 249 | "tags": ["Maps"] 250 | }, 251 | { 252 | "id": 28, 253 | "order": 13, 254 | "name": "Mapbox", 255 | "link": "https://www.mapbox.com/", 256 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/mapbox", 257 | "tags": ["Maps"], 258 | "license": "Freemium", 259 | "licenseLink": "https://www.mapbox.com/pricing" 260 | }, 261 | { 262 | "id": 29, 263 | "order": 28, 264 | "name": "Draggable JS", 265 | "link": "https://shopify.github.io/draggable/", 266 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/draggable", 267 | "tags": ["Drag and drop"], 268 | "license": "MIT", 269 | "licenseLink": "https://github.com/Shopify/shopify.github.com/blob/main/LICENSE.md" 270 | }, 271 | { 272 | "id": 30, 273 | "order": 20, 274 | "name": "ipad-cursor", 275 | "link": "https://cursor.oooo.so/", 276 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/cursoroooo", 277 | "tags": ["iPad's mouse effect"], 278 | "license": "MIT", 279 | "licenseLink": "https://github.com/CatsJuice/ipad-cursor/blob/main/LICENSE" 280 | }, 281 | { 282 | "id": 31, 283 | "order": 54, 284 | "name": "PDFSlick", 285 | "link": "https://pdfslick.dev/", 286 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/pdfslick", 287 | "tags": ["View and Interact with PDFs"], 288 | "license": "MIT", 289 | "licenseLink": "https://github.com/pdfslick/pdfslick/blob/main/LICENSE" 290 | }, 291 | { 292 | "id": 32, 293 | "order": 47, 294 | "name": "Swiper", 295 | "link": "https://swiperjs.com/", 296 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/libraries/swiperjs", 297 | "tags": ["Sliders"], 298 | "license": "MIT", 299 | "licenseLink": "https://github.com/nolimits4web/swiper/blob/master/LICENSE" 300 | } 301 | ] 302 | -------------------------------------------------------------------------------- /source-web/src/assets/db/photos.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 99, 5 | "name": "Pexels", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/pexels", 7 | "link": "https://www.pexels.com", 8 | "license": "Free", 9 | "licenseLink": "https://www.pexels.com/license/", 10 | "licenseDescription": "All photos and videos on Pexels can be downloaded and used for free." 11 | }, 12 | { 13 | "id": 2, 14 | "order": 98, 15 | "name": "PixaBay", 16 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/pixabay", 17 | "link": "https://pixabay.com/photos/", 18 | "license": "Pixabay License", 19 | "licenseLink": "https://pixabay.com/es/service/license/", 20 | "licenseDescription": "Free for commercial and noncommercial use. Attribution is not required." 21 | }, 22 | { 23 | "id": 3, 24 | "order": 87, 25 | "name": "Unsplash", 26 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/unsplash", 27 | "link": "https://unsplash.com", 28 | "license": "Free", 29 | "licenseLink": "https://unsplash.com/license", 30 | "licenseDescription": "Free for Commercial and non-commercial purposes. No attribution required." 31 | }, 32 | { 33 | "id": 4, 34 | "order": 85, 35 | "name": "Picography", 36 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/picography", 37 | "link": "https://picography.co", 38 | "license": "CC0 1.0", 39 | "licenseLink": "https://picography.co/terms/" 40 | }, 41 | { 42 | "id": 5, 43 | "order": 79, 44 | "name": "BURST", 45 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/nqabpisbca27jeilwiz0", 46 | "link": "https://www.shopify.com/stock-photos", 47 | "license": "Burst license", 48 | "licenseLink": "https://www.shopify.com/stock-photos/licenses/shopify-some-rights-reserved", 49 | "licenseDescription": "All our photos are free for commercial use with no attribution required" 50 | }, 51 | { 52 | "id": 6, 53 | "order": 78, 54 | "name": "ISO Republic", 55 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703379961/freesets/videos/seihdp8tiic1xff7lmty.webp", 56 | "link": "https://isorepublic.com", 57 | "license": "CC0", 58 | "licenseLink": "https://isorepublic.com/license/" 59 | }, 60 | { 61 | "id": 7, 62 | "order": 73, 63 | "name": "Foodiesfeed", 64 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703380304/freesets/photos/dtpc63qf0lta9arfmjxp.webp", 65 | "link": "https://www.foodiesfeed.com", 66 | "tags": ["Food", "IA"], 67 | "license": "CC0", 68 | "licenseLink": "https://www.foodiesfeed.com/license/" 69 | }, 70 | { 71 | "id": 8, 72 | "order": 70, 73 | "name": "Foca stock", 74 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/vo91kfa8yf1bfjlh3hp9", 75 | "link": "https://focastock.com", 76 | "license": "CC0", 77 | "licenseLink": "https://focastock.com/license/" 78 | }, 79 | { 80 | "id": 9, 81 | "order": 57, 82 | "name": "Librestock", 83 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/k0wczfs8jhkdyt2emb42", 84 | "link": "https://librestock.com/", 85 | "license": "CC0", 86 | "licenseLink": "https://librestock.com/license/" 87 | }, 88 | { 89 | "id": 10, 90 | "order": 40, 91 | "name": "StockSnap", 92 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/stocksnap", 93 | "link": "https://stocksnap.io", 94 | "license": "CC0 1.0", 95 | "licenseLink": "https://stocksnap.io/license" 96 | }, 97 | { 98 | "id": 11, 99 | "order": 40, 100 | "name": "Little Visuals", 101 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/dnhigbkxnmiyyb4niexl", 102 | "link": "https://littlevisuals.co", 103 | "license": "CC0", 104 | "licenseLink": "https://littlevisuals.co" 105 | }, 106 | { 107 | "id": 12, 108 | "order": 40, 109 | "name": "Barnimages", 110 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/cxuir76i6d8mt9misxxg", 111 | "link": "https://barnimages.com", 112 | "license": "Free", 113 | "licenseLink": "https://barnimages.com/license/" 114 | }, 115 | { 116 | "id": 13, 117 | "order": 25, 118 | "name": "Shotstash", 119 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/bnxx11wyktgmdczf7a7i", 120 | "link": "https://shotstash.com", 121 | "license": "CC0", 122 | "licenseLink": "https://shotstash.com/license/" 123 | }, 124 | { 125 | "id": 14, 126 | "order": 20, 127 | "name": "Nappy", 128 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/nappy", 129 | "link": "https://nappy.co", 130 | "license": "CC0 1.0", 131 | "licenseLink": "https://nappy.co/license" 132 | }, 133 | { 134 | "id": 15, 135 | "order": 9, 136 | "name": "Gratisography", 137 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703380639/freesets/photos/gvsm7y89qgfqju6mwvsi.webp", 138 | "link": "https://gratisography.com", 139 | "tags": ["IA"], 140 | "license": "Free", 141 | "licenseLink": "https://gratisography.com/license/" 142 | }, 143 | { 144 | "id": 16, 145 | "order": 18, 146 | "name": "Picjumbo", 147 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/picjumbo", 148 | "link": "https://picjumbo.com/", 149 | "license": "Freemium", 150 | "licenseLink": "https://picjumbo.com/faq-and-terms/" 151 | }, 152 | { 153 | "id": 17, 154 | "order": 7, 155 | "name": "Noun Project", 156 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/rjsgqt0ldn8betpkcmty", 157 | "link": "https://thenounproject.com/photos/", 158 | "license": "Freemium", 159 | "licenseLink": "https://thenounproject.com/pricing/#photos", 160 | "licenseDescription": "Free with attribution" 161 | }, 162 | { 163 | "id": 18, 164 | "order": 80, 165 | "name": "Openverse", 166 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/openverse", 167 | "link": "https://openverse.org", 168 | "license": "CC", 169 | "licenseLink": "https://openverse.org" 170 | }, 171 | { 172 | "id": 19, 173 | "order": 85, 174 | "name": "Lummi Photos", 175 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/lummi", 176 | "link": "https://www.lummi.ai/", 177 | "license": "Free", 178 | "licenseLink": "https://www.lummi.ai/terms", 179 | "tags": ["AI"] 180 | }, 181 | { 182 | "id": 20, 183 | "order": 83, 184 | "name": "Neurascapes", 185 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/neurascapes", 186 | "link": "https://www.neurascapes.com", 187 | "license": "Free", 188 | "licenseLink": "https://www.neurascapes.com/license", 189 | "tags": ["AI"] 190 | }, 191 | { 192 | "id": 21, 193 | "order": 26, 194 | "name": "Skitterphoto", 195 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/skitterphoto", 196 | "link": "https://skitterphoto.com", 197 | "license": "CC0", 198 | "licenseLink": "https://skitterphoto.com/license" 199 | }, 200 | { 201 | "id": 22, 202 | "order": 7, 203 | "name": "Freepik", 204 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/freepik", 205 | "link": "https://www.freepik.com/", 206 | "license": "Freepik License", 207 | "licenseLink": "https://www.freepik.com/legal/terms-of-use#nav-freepik-agreement", 208 | "licenseDescription": "Free with attribution" 209 | }, 210 | { 211 | "id": 23, 212 | "order": 78, 213 | "name": "Public Work by Cosmos", 214 | "link": "https://public.work/", 215 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/photos/publicwork", 216 | "tags": ["Vintage"] 217 | } 218 | ] 219 | -------------------------------------------------------------------------------- /source-web/src/assets/db/tools.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 88, 5 | "name": "Squoosh", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703696273/freesets/tools/tix7qdzgrhabjjyyhqfd.webp", 7 | "link": "https://squoosh.app", 8 | "tags": ["Image optimizer"] 9 | }, 10 | { 11 | "id": 2, 12 | "order": 87, 13 | "name": "Shots", 14 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703007575/freesets/tools/shots.so__mntgnr.webp", 15 | "link": "https://shots.so", 16 | "tags": ["Mockups"] 17 | }, 18 | { 19 | "id": 3, 20 | "order": 70, 21 | "name": "Layoutit Grid", 22 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705765960/freesets/tools/zyht5hsanjj3u8x90urj.webp", 23 | "link": "https://grid.layoutit.com", 24 | "tags": ["Grid generator"] 25 | }, 26 | { 27 | "id": 4, 28 | "order": 70, 29 | "name": "Monkeytype", 30 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706564906/freesets/tools/fvrsm72jltufe17ldcjr.webp", 31 | "link": "https://monkeytype.com", 32 | "tags": ["Typing test"] 33 | }, 34 | { 35 | "id": 5, 36 | "order": 70, 37 | "name": "RapidAPI", 38 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707611793/freesets/tools/boexcwzmhjfb7xzwwynl.webp", 39 | "link": "https://rapidapi.com/collections", 40 | "tags": ["API Collections"] 41 | }, 42 | { 43 | "id": 6, 44 | "order": 65, 45 | "name": "JS Benchmark", 46 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703007858/freesets/tools/jsbenchmark.com__s9tkth.webp", 47 | "link": "https://jsbenchmark.com", 48 | "tags": ["Benchmark"] 49 | }, 50 | { 51 | "id": 7, 52 | "order": 64, 53 | "name": "Chalk.ist", 54 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705069474/freesets/tools/to4nrd4wroizt5yyhwhi.webp", 55 | "link": "https://chalk.ist", 56 | "tags": ["Code screenshots"] 57 | }, 58 | { 59 | "id": 8, 60 | "order": 60, 61 | "name": "CodeImage", 62 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705069400/freesets/tools/ttljqybxfi5rp3yzmczy.webp", 63 | "link": "https://app.codeimage.dev", 64 | "tags": ["Code screenshots"] 65 | }, 66 | { 67 | "id": 9, 68 | "order": 50, 69 | "name": "Excalidraw", 70 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703696414/freesets/tools/x8cznjuhqty30kj7aabe.webp", 71 | "link": "https://excalidraw.com", 72 | "tags": ["Whiteboard"] 73 | }, 74 | { 75 | "id": 10, 76 | "order": 40, 77 | "name": "Tally", 78 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703458941/freesets/tools/aur2ldiowy6y25j7mgmy.webp", 79 | "link": "https://tally.so", 80 | "tags": ["Forms"] 81 | }, 82 | { 83 | "id": 11, 84 | "order": 36, 85 | "name": "Component Party", 86 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703460201/freesets/tools/plhgkf9he7pzz9mcs2ac.webp", 87 | "link": "https://component-party.dev", 88 | "tags": ["Framework comparator"] 89 | }, 90 | { 91 | "id": 12, 92 | "order": 25, 93 | "name": "React Skeleton", 94 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705506754/freesets/tools/t4yd2iphzvqihcgoj5gw.webp", 95 | "link": "https://skeletonreact.com", 96 | "tags": ["Skeleton loader"] 97 | }, 98 | { 99 | "id": 13, 100 | "order": 23, 101 | "name": "Slidev", 102 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1705069666/freesets/tools/kvaydsvk4smo54hq0fgd.webp", 103 | "link": "https://sli.dev", 104 | "tags": ["Code to slides"] 105 | }, 106 | { 107 | "id": 14, 108 | "order": 20, 109 | "name": "Glyphy", 110 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1704379365/freesets/tools/diets4yvtwotg7yvi8do.webp", 111 | "link": "https://glyphy.io", 112 | "tags": ["Font generator"] 113 | }, 114 | { 115 | "id": 15, 116 | "order": 19, 117 | "name": "Microcopy", 118 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703554682/freesets/tools/kef9otwvixr44geier9v.webp", 119 | "link": "https://www.microcopy.me", 120 | "tags": ["Microcopies"] 121 | }, 122 | { 123 | "id": 16, 124 | "order": 15, 125 | "name": "Transform tools", 126 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1707069166/freesets/tools/hvxjb3ktzko8xztb1qcl.webp", 127 | "link": "https://transform.tools/", 128 | "tags": ["Transform data"] 129 | }, 130 | { 131 | "id": 17, 132 | "order": 1, 133 | "name": "Favicon Generator", 134 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/favicon-generator", 135 | "link": "https://www.favicon-generator.org/", 136 | "tags": ["Favicon generator"] 137 | }, 138 | { 139 | "id": 18, 140 | "order": 1, 141 | "name": "Real Favicon Generator", 142 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/real-favicon", 143 | "link": "https://realfavicongenerator.net/", 144 | "tags": ["Favicon generator"] 145 | }, 146 | { 147 | "id": 19, 148 | "order": 30, 149 | "name": "readme.so", 150 | "link": "https://readme.so/", 151 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/readmeso", 152 | "tags": ["Readme generator"] 153 | }, 154 | { 155 | "id": 20, 156 | "order": 8, 157 | "name": "eraser.io", 158 | "link": "https://www.eraser.io/", 159 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/eraser-io", 160 | "tags": ["Canvas"] 161 | }, 162 | { 163 | "id": 21, 164 | "order": 38, 165 | "name": "draw.io", 166 | "link": "https://www.draw.io/", 167 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/draw-io", 168 | "tags": ["Flowcharts"] 169 | }, 170 | { 171 | "id": 22, 172 | "order": 41, 173 | "name": "SVGOMG", 174 | "link": "https://svgomg.net/", 175 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/svgomg", 176 | "tags": ["SVG optimizer"] 177 | }, 178 | { 179 | "id": 23, 180 | "order": 35, 181 | "name": "Freeter", 182 | "link": "https://freeter.io/", 183 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/freeter", 184 | "tags": ["Organizer"], 185 | "license": "GPL-3.0", 186 | "licenseLink": "https://github.com/FreeterApp/Freeter/blob/master/COPYING" 187 | }, 188 | { 189 | "id": 24, 190 | "order": 38, 191 | "name": "ray.so", 192 | "link": "https://ray.so", 193 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/rayso", 194 | "license": "MIT", 195 | "licenseLink": "https://github.com/raycast/ray-so/blob/main/LICENSE", 196 | "tags": ["Code screenshots"] 197 | }, 198 | { 199 | "id": 25, 200 | "order": 35, 201 | "name": "Responsively App", 202 | "link": "https://responsively.app/", 203 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/responsively", 204 | "license": "AGPL-3.0", 205 | "licenseLink": "https://github.com/responsively-org/responsively-app/blob/main/LICENSE", 206 | "tags": ["Responsive design", "App"] 207 | }, 208 | { 209 | "id": 26, 210 | "order": 38, 211 | "name": "UptoSite", 212 | "link": "https://upto.site/", 213 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/tools/uptosite", 214 | "tags": ["Link shortener"] 215 | } 216 | ] 217 | -------------------------------------------------------------------------------- /source-web/src/assets/db/typography.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 100, 5 | "name": "Google fonts", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/google", 7 | "link": "https://fonts.google.com/", 8 | "license": "Multiple", 9 | "licenseLink": "https://developers.google.com/fonts/faq#can_i_use_any_font_in_a_commercial_product" 10 | }, 11 | { 12 | "id": 2, 13 | "order": 98, 14 | "name": "Fontsource", 15 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703614544/freesets/typography/i5momje7eakesx8ltcex.webp", 16 | "link": "https://fontsource.org", 17 | "license": "Multiple", 18 | "licenseLink": "https://github.com/fontsource/fontsource?tab=readme-ov-file#licensing" 19 | }, 20 | { 21 | "id": 3, 22 | "order": 95, 23 | "name": "Typewolf", 24 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703374218/freesets/typography/uhcny9gmqaobpoxtfglb.webp", 25 | "link": "https://www.typewolf.com/", 26 | "tags": ["Inspiration"] 27 | }, 28 | { 29 | "id": 4, 30 | "order": 85, 31 | "name": "Typo/graphic", 32 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/mawekotxpersuho9mast", 33 | "link": "https://www.typographicposters.com", 34 | "tags": ["Inspiration"] 35 | }, 36 | { 37 | "id": 5, 38 | "order": 80, 39 | "name": "Fontshare", 40 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fontshare", 41 | "link": "https://www.fontshare.com" 42 | }, 43 | { 44 | "id": 6, 45 | "order": 76, 46 | "name": "Fontpair", 47 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/j8zzfqs6ujvggncphlip", 48 | "link": "https://www.fontpair.co", 49 | "license": "Multiple" 50 | }, 51 | { 52 | "id": 7, 53 | "order": 70, 54 | "name": "Free Faces", 55 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/freefaces", 56 | "link": "https://www.freefaces.gallery", 57 | "license": "Free" 58 | }, 59 | { 60 | "id": 8, 61 | "order": 56, 62 | "name": "Font Meme", 63 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703378435/freesets/typography/lhrtmhl3nrcuqlvht8nt.webp", 64 | "link": "https://fontmeme.com" 65 | }, 66 | { 67 | "id": 9, 68 | "order": 50, 69 | "name": "Fontjoy", 70 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fontjoy", 71 | "link": "https://fontjoy.com", 72 | "tags": ["Tool"] 73 | }, 74 | { 75 | "id": 10, 76 | "order": 40, 77 | "name": "Font style matcher", 78 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/font-style-matcher", 79 | "link": "https://meowni.ca/font-style-matcher/", 80 | "tags": ["Tool"] 81 | }, 82 | { 83 | "id": 11, 84 | "order": 38, 85 | "name": "Fonts In Use", 86 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1706564814/freesets/typography/i91pmpuedxlquhnh6n7q.webp", 87 | "link": "https://fontsinuse.com" 88 | }, 89 | { 90 | "id": 12, 91 | "order": 20, 92 | "name": "Fluid typography", 93 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fluid-typography", 94 | "link": "https://modern-fluid-typography.vercel.app", 95 | "tags": ["Tool"] 96 | }, 97 | { 98 | "id": 13, 99 | "order": 10, 100 | "name": "DaFont", 101 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/viak4hfmoiao8nywnzbc", 102 | "link": "https://www.dafont.com", 103 | "license": "Multiple" 104 | }, 105 | { 106 | "id": 14, 107 | "order": 1, 108 | "name": "OnlineWebFonts.COM", 109 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/xmqlrpdre5sm4gnly50g", 110 | "link": "https://www.onlinewebfonts.com/fonts", 111 | "license": "Free with attribution" 112 | }, 113 | { 114 | "id": 15, 115 | "order": 70, 116 | "name": "UNCUT.wtf", 117 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/uncutwtf", 118 | "link": "https://uncut.wtf/" 119 | }, 120 | { 121 | "id": 16, 122 | "order": 20, 123 | "name": "Beautiful web type", 124 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/beautifulwebtype", 125 | "link": "https://beautifulwebtype.com/", 126 | "tags": ["Inspiration"] 127 | }, 128 | { 129 | "id": 17, 130 | "order": 50, 131 | "name": "Font Brief", 132 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fontbrief", 133 | "link": "https://www.fontbrief.com/home", 134 | "tags": ["Tool"], 135 | "license": "Multiple" 136 | }, 137 | { 138 | "id": 18, 139 | "order": 10, 140 | "name": "Font Pairings", 141 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fontpairings", 142 | "link": "https://fontpairings.bypeople.com/", 143 | "license": "Freemium", 144 | "tags": ["Tool"] 145 | }, 146 | { 147 | "id": 19, 148 | "order": 76, 149 | "name": "Fonts in the Wild", 150 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fontsinthewild", 151 | "link": "https://www.fontsinthewild.com/free", 152 | "license": "Multiple" 153 | }, 154 | { 155 | "id": 20, 156 | "order": 57, 157 | "name": "Archetype", 158 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/archetype", 159 | "link": "https://archetypeapp.com/", 160 | "tags": ["Tool"] 161 | }, 162 | { 163 | "id": 21, 164 | "order": 20, 165 | "name": "Typescale", 166 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/typescale", 167 | "link": "https://typescale.io/", 168 | "tags": ["Plugin"] 169 | }, 170 | { 171 | "id": 22, 172 | "order": 20, 173 | "name": "Font.Download", 174 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/fontdownload", 175 | "link": "https://font.download/" 176 | }, 177 | { 178 | "id": 23, 179 | "order": 19, 180 | "name": "Font.Download", 181 | "link": "https://modernfontstacks.com/", 182 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/modernfontstacks", 183 | "tags": ["CSS"] 184 | } 185 | ] 186 | -------------------------------------------------------------------------------- /source-web/src/assets/db/videos.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 1, 4 | "order": 99, 5 | "name": "Pixabay", 6 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/pixabay", 7 | "link": "https://pixabay.com/videos/", 8 | "license": "Pixabay License", 9 | "licenseLink": "https://pixabay.com/service/license/", 10 | "licenseDescription": "Free for commercial and noncommercial use. Attribution is not required." 11 | }, 12 | { 13 | "id": 2, 14 | "order": 95, 15 | "name": "Pexels", 16 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/pexels", 17 | "link": "https://www.pexels.com/videos/", 18 | "license": "Free", 19 | "licenseLink": "https://www.pexels.com/license/", 20 | "licenseDescription": "All photos and videos on Pexels can be downloaded and used for free." 21 | }, 22 | { 23 | "id": 3, 24 | "order": 94, 25 | "name": "Coverr", 26 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/coverr", 27 | "link": "https://coverr.co", 28 | "license": "Free", 29 | "licenseLink": "https://coverr.co/license", 30 | "licenseDescription": "All Videos published on Coverr.co can be used free for commercial and non-commercial purposes. You do not need to ask permission from or provide credit to the videographer or Coverr.co, although it is appreciated when possible." 31 | }, 32 | { 33 | "id": 4, 34 | "order": 80, 35 | "name": "ISO Republic", 36 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/v1703379961/freesets/videos/seihdp8tiic1xff7lmty.webp", 37 | "link": "https://isorepublic.com", 38 | "license": "CC0", 39 | "licenseLink": "https://isorepublic.com/license/" 40 | }, 41 | { 42 | "id": 5, 43 | "order": 76, 44 | "name": "Focastock", 45 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/rmvbtxdr4upad8r1opip", 46 | "link": "https://focastock.com/videos/", 47 | "license": "CC0", 48 | "licenseLink": "https://focastock.com/license/" 49 | }, 50 | { 51 | "id": 6, 52 | "order": 40, 53 | "name": "Videezy", 54 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/videezy", 55 | "link": "https://www.videezy.com", 56 | "license": "Multiple", 57 | "licenseLink": "https://www.videezy.com/terms", 58 | "licenseDescription": "Standard, Pro, Creative Commons and Editorial Use Only" 59 | }, 60 | { 61 | "id": 7, 62 | "order": 30, 63 | "name": "Mixkit", 64 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/mixkit", 65 | "link": "https://mixkit.co/free-stock-video/", 66 | "license": "Free", 67 | "licenseLink": "https://mixkit.co/license/", 68 | "licenseDescription": "Items under the Mixkit Stock Video Free License can be used in your commercial and non-commercial projects, for free." 69 | }, 70 | { 71 | "id": 8, 72 | "order": 10, 73 | "name": "Vidsplay", 74 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/g6rwxg8wydrdpfnywijw", 75 | "link": "https://www.vidsplay.com/", 76 | "license": "Free with attribution", 77 | "licenseLink": "https://www.vidsplay.com/terms/" 78 | }, 79 | { 80 | "id": 9, 81 | "order": 7, 82 | "name": "Dareful", 83 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/luzv5hwxmjiwp0xzw2o9.webp", 84 | "link": "https://dareful.com", 85 | "license": "CC BY 4.0 DEED", 86 | "licenseLink": "https://dareful.com" 87 | }, 88 | { 89 | "id": 10, 90 | "order": 6, 91 | "name": "Mazwai", 92 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/uuyp3fx6to9gbzn4ehlj", 93 | "link": "https://mazwai.com", 94 | "license": "Multiple", 95 | "licenseLink": "https://mazwai.com/license-details", 96 | "licenseDescription": "There are two types of license: CC-BY 3.0 (with attribution) or Mazwai License (without attribution)." 97 | }, 98 | { 99 | "id": 11, 100 | "order": 6, 101 | "name": "Vimeo", 102 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/eybg2hh9eshhaxvdtsci.webp", 103 | "link": "https://vimeo.com/groups/freehd/", 104 | "license": "Multiple" 105 | }, 106 | { 107 | "id": 12, 108 | "order": 2, 109 | "name": "Videvo", 110 | "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/videos/videvo", 111 | "link": "https://www.videvo.net", 112 | "license": "Multiple", 113 | "licenseLink": "https://help.videvo.net/category/6-licensing", 114 | "licenseDescription": "Videvo Attribution License or CC BY 3.0" 115 | } 116 | ] 117 | -------------------------------------------------------------------------------- /source-web/src/assets/fonts/Gabarito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidHDev/Freesets/bd58433e6d2e5220177065237a42f0c966df4bea/source-web/src/assets/fonts/Gabarito-Regular.ttf -------------------------------------------------------------------------------- /source-web/src/assets/fonts/Gabarito-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidHDev/Freesets/bd58433e6d2e5220177065237a42f0c966df4bea/source-web/src/assets/fonts/Gabarito-SemiBold.ttf -------------------------------------------------------------------------------- /source-web/src/assets/icons/arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/backArrow.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/close.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/coffee.svg: -------------------------------------------------------------------------------- 1 | Buy Me A Coffee -------------------------------------------------------------------------------- /source-web/src/assets/icons/darkmode.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/external-link.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/external.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/info.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/lightmode.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/noresults.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/search.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/star.svg: -------------------------------------------------------------------------------- 1 | 3 | 4 | -------------------------------------------------------------------------------- /source-web/src/assets/icons/tag.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/src/components/AssetCard.svelte: -------------------------------------------------------------------------------- 1 | 10 | 11 | {#each assets as asset} 12 |
16 |
17 | 23 | {asset.name 30 | 34 | 35 | {#if asset.tags} 36 | 51 | {/if} 52 |
53 | 54 |
57 | 69 | 70 | {#if asset.license} 71 |
72 | {#if asset.licenseLink} 73 | 79 | {#if asset.licenseDescription} 80 | 87 | {/if} 88 | {asset.license} 89 | 90 | {:else} 91 |
94 | {#if asset.licenseDescription} 95 | 102 | {/if} 103 | {asset.license} 104 |
105 | {/if} 106 | 107 | {#if asset.licenseDescription} 108 |

111 | {asset.licenseDescription} 112 |

113 | {/if} 114 |
115 | {/if} 116 |
117 |
118 | {/each} 119 | -------------------------------------------------------------------------------- /source-web/src/components/Assets.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 |
9 |
10 |
13 | 20 |
21 | {#if data.totalAssets > 0} 22 |
26 | 27 |
28 | {:else} 29 |
32 | 33 |

No results found

34 |
35 | {/if} 36 | 37 | {#if data.totalPages > 1} 38 | 39 | {/if} 40 |
41 |
42 | -------------------------------------------------------------------------------- /source-web/src/components/Menu.svelte: -------------------------------------------------------------------------------- 1 | 26 | 27 |
28 | 109 | 110 |
115 | 116 | 132 |
133 |
134 | 135 | 144 | -------------------------------------------------------------------------------- /source-web/src/components/NavBar.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | 50 | -------------------------------------------------------------------------------- /source-web/src/components/ui/Image.svelte: -------------------------------------------------------------------------------- 1 | 29 | 30 | 39 | -------------------------------------------------------------------------------- /source-web/src/components/ui/Pagination.svelte: -------------------------------------------------------------------------------- 1 | 12 | 13 | 74 | -------------------------------------------------------------------------------- /source-web/src/components/ui/Slider.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 26 | 27 | 60 | -------------------------------------------------------------------------------- /source-web/src/routes/+error.svelte: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 404 Error - Freesets 7 | 8 | 9 | 10 |
11 |

404 Error

12 |

Page not found

13 | 14 | 15 | Go back home 16 | 17 |
18 | -------------------------------------------------------------------------------- /source-web/src/routes/+layout.svelte: -------------------------------------------------------------------------------- 1 | 19 | 20 |
21 |
24 | 25 | 26 | 27 |
28 | 29 | 64 | -------------------------------------------------------------------------------- /source-web/src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | Freesets 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 |
35 |

Freesets

36 | 37 | 38 |
39 | -------------------------------------------------------------------------------- /source-web/src/routes/[category]/+page.server.js: -------------------------------------------------------------------------------- 1 | import categories from '@/assets/categories.js'; 2 | let assets = 42; 3 | 4 | import { error } from '@sveltejs/kit'; 5 | /** @type {import('./$types').PageServerLoad} */ 6 | 7 | export async function load ({ params, url }) { 8 | const { category } = params; 9 | let resources = categories.find(c => c.nameID === category) 10 | const currentPage = Number(url.searchParams.get('page') ?? 1) 11 | const q = url.searchParams.get('q')?.toLowerCase() ?? '' 12 | 13 | const start = assets * currentPage - assets 14 | const end = assets * currentPage 15 | 16 | if (!resources || !currentPage || currentPage < 1) return error(404, 'Not found') 17 | if (start >= resources.assets.length) return error(404, 'Not found') 18 | 19 | if (q) { 20 | const searchTerms = q.split(' ').map(term => term.toLowerCase()).filter((t) => t) 21 | resources = { 22 | ...resources, assets: resources.assets.filter(resource => 23 | searchTerms.every(searchTerm => 24 | resource.name.toLowerCase().includes(searchTerm) 25 | || resource.link.toLowerCase().includes(searchTerm) 26 | || resource.license?.toLowerCase().includes(searchTerm) 27 | || resource.tags?.some(tag => tag.toLowerCase().includes(searchTerm))) 28 | ) 29 | } 30 | } 31 | 32 | return { 33 | ...resources, 34 | totalAssets: resources.assets.length, 35 | currentPage, 36 | totalPages: Math.ceil(resources.assets.length / assets), 37 | assets: resources.assets?.slice(start, end), 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /source-web/src/routes/[category]/+page.svelte: -------------------------------------------------------------------------------- 1 | 12 | 13 | 14 | {data.name} - Freesets 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /source-web/src/routes/styles.css: -------------------------------------------------------------------------------- 1 | @import '@fontsource/fira-mono'; 2 | @tailwind base; 3 | @tailwind components; 4 | @tailwind utilities; 5 | 6 | @layer base { 7 | .appear { 8 | @apply !translate-y-0 !opacity-100 !scale-100; 9 | } 10 | } 11 | 12 | @media (1190px <= width <= 1310px) { 13 | .navbar-item { 14 | min-width: 9rem !important; 15 | } 16 | } 17 | 18 | :root { 19 | --color-bg: #fafafa; 20 | --color-text: rgba(0, 0, 0, 0.7); 21 | color: var(--color-text); 22 | background-color: var(--color-bg); 23 | color: white; 24 | scroll-behavior: smooth; 25 | font-family: 'Gabarito', sans-serif; 26 | transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; 27 | font-display: swap; 28 | } 29 | 30 | :root.dark { 31 | --color-bg: #1e2022; 32 | --color-text: rgba(0, 0, 0, 0.7); 33 | } 34 | 35 | /* Asset card animation ======== */ 36 | 37 | @keyframes show { 38 | from { 39 | opacity: 0; 40 | scale: 70%; 41 | } 42 | to { 43 | opacity: 1; 44 | scale: 100%; 45 | } 46 | } 47 | 48 | .asset-card { 49 | view-timeline: --assetCards block; 50 | animation-timeline: --assetCards; 51 | 52 | animation-name: show; 53 | animation-fill-mode: both; 54 | animation-range: entry 5% cover 30%; 55 | } 56 | 57 | /* Disable animations ========= */ 58 | @media (prefers-reduced-motion) { 59 | ::view-transition-group(*), 60 | ::view-transition-old(*), 61 | ::view-transition-new(*) { 62 | animation: none !important; 63 | } 64 | } 65 | 66 | /* Title ======== */ 67 | .title-responsive { 68 | font-size: clamp(3.6rem, 9vw + 2rem, 8rem); 69 | line-height: clamp(3.6rem, 9vw + 2rem, 8rem); 70 | } 71 | 72 | .recourse-title::after { 73 | content: ''; 74 | position: absolute; 75 | border-radius: 0 0 10px 10px; 76 | -webkit-transform: perspective(100px) rotateX(-20deg); 77 | transform: perspective(100px) rotateX(-20deg); 78 | background: var(--resource-color); 79 | top: 0; 80 | right: 0; 81 | left: 0; 82 | z-index: -10; 83 | height: 108%; 84 | width: 100%; 85 | } 86 | 87 | /* Fonts ======== */ 88 | @font-face { 89 | font-family: 'Gabarito'; 90 | src: url('@/assets/fonts/Gabarito-Regular.ttf'); 91 | font-weight: 400; 92 | font-style: normal; 93 | font-display: swap; 94 | } 95 | 96 | @font-face { 97 | font-family: 'Gabarito'; 98 | src: url('@/assets/fonts/Gabarito-SemiBold.ttf'); 99 | font-weight: 600; 100 | font-style: normal; 101 | font-display: swap; 102 | } 103 | 104 | /* Scroll bar ======== */ 105 | 106 | ::-webkit-scrollbar { 107 | width: 8px; 108 | } 109 | 110 | ::-webkit-scrollbar-track { 111 | background: #282a2b; 112 | } 113 | 114 | ::-webkit-scrollbar-thumb { 115 | background: white; 116 | border-radius: 2rem; 117 | } 118 | 119 | ::-webkit-scrollbar-thumb:hover { 120 | background: #b3b3b3; 121 | } 122 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/3d.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/backgrounds.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/blogs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/colors.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/components.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/home.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/icons.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/illustrations.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/inspirations.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/libraries.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/photos.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/tools.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/typography.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /source-web/static/categories-icons/videos.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /source-web/static/favicon.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-web/static/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidHDev/Freesets/bd58433e6d2e5220177065237a42f0c966df4bea/source-web/static/placeholder.gif -------------------------------------------------------------------------------- /source-web/static/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /source-web/svelte.config.js: -------------------------------------------------------------------------------- 1 | import adapter from '@sveltejs/adapter-auto'; 2 | import { vitePreprocess } from '@sveltejs/kit/vite'; 3 | 4 | /** @type {import('@sveltejs/kit').Config} */ 5 | const config = { 6 | kit: { 7 | // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. 8 | // If your environment is not supported or you settled on a specific environment, switch out the adapter. 9 | // See https://kit.svelte.dev/docs/adapters for more information about adapters. 10 | adapter: adapter(), 11 | alias: { 12 | '@': 'src' 13 | } 14 | }, 15 | preprocess: vitePreprocess() 16 | }; 17 | 18 | export default config; 19 | -------------------------------------------------------------------------------- /source-web/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | darkMode: 'class', 4 | content: ['./src/**/*.{html,js,svelte,ts}'], 5 | theme: { 6 | extend: {}, 7 | }, 8 | plugins: [], 9 | } 10 | 11 | -------------------------------------------------------------------------------- /source-web/vite.config.js: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { defineConfig } from 'vite'; 3 | 4 | export default defineConfig({ 5 | plugins: [sveltekit()], 6 | build: { 7 | rollupOptions: { 8 | external: '@supabase/supabase-js' 9 | } 10 | }, 11 | }); 12 | --------------------------------------------------------------------------------