From 9e5a6dbe2e80e71c98fdadd49b4fe65cda0a7560 Mon Sep 17 00:00:00 2001 From: CosmoArt Date: Wed, 4 Dec 2024 19:37:03 -0500 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20add=20resources?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CONTRIBUTING.md | 34 +++++++++++++++++------ source-web/src/assets/db/backgrounds.json | 7 +++++ source-web/src/assets/db/components.json | 10 +++++++ source-web/src/assets/db/icons.json | 9 ++++++ source-web/src/assets/db/typography.json | 10 ++++++- 5 files changed, 60 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ac126ef..e7ca55a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,33 +17,49 @@ You can contribute new resources to Freesets in two different ways: To make a pull request follow the following steps: -1. Clone the repository. +1. Fork the repository on GitHub. + +2. Clone your forked repository. + +```bash +git clone https://github.com/your-username/freesets +``` + +3. Navigate to the repository directory. ```bash -git clone https://github.com/cosmoart/free-resources +cd freesets ``` -2. Create a new branch. This step is optional, but recommended. +> Or you can use `code freesets` to open the repository in Visual Studio Code. + +4. Create a new branch. This step is optional, but recommended. ```bash -git checkout -b my-branch +git checkout -b your-branch-name ``` -3. Make the changes in the website or add your resources to the jsons files in the `source-web/src/assets/db`. +5. Make the changes in the website or add your resources to the jsons files in `source-web/src/assets/db`. + +6. Add your changes to the staging area. + +```bash +git add . +``` -4. Commit your changes. +7. Commit your changes. ```bash git commit -m "✨ add resources" ``` -5. Push to the branch. +8. Push to the branch. ```bash -git push origin my-branch +git push origin your-branch-name ``` -6. Open a pull request. +9. Open a pull request. ## Resource structure diff --git a/source-web/src/assets/db/backgrounds.json b/source-web/src/assets/db/backgrounds.json index a4d949d..46df56a 100644 --- a/source-web/src/assets/db/backgrounds.json +++ b/source-web/src/assets/db/backgrounds.json @@ -235,5 +235,12 @@ "name": "CSS mesh gradients", "link": "https://csshero.org/mesher/", "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/cssheromesher" + }, + { + "id": 29, + "order": 94, + "name": "Mazeletter", + "link": "http://mazeletter.xyz/", + "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/backgrounds/mazeletter" } ] diff --git a/source-web/src/assets/db/components.json b/source-web/src/assets/db/components.json index 0c3dcff..5e853d6 100644 --- a/source-web/src/assets/db/components.json +++ b/source-web/src/assets/db/components.json @@ -672,5 +672,15 @@ "tags": ["Astro"], "license": "MIT", "licenseLink": "https://github.com/fulldotdev/ui/blob/main/LICENCE" + }, + { + "id": 74, + "order": 84, + "name": "Origin UI", + "link": "https://originui.com/", + "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/components/originui", + "tags": ["React", "Tailwind", "Next.js", "HTML"], + "license": "Free", + "licenseLink": "https://github.com/origin-space/originui?tab=readme-ov-file#terms-of-use" } ] diff --git a/source-web/src/assets/db/icons.json b/source-web/src/assets/db/icons.json index 9951a9f..3362db4 100644 --- a/source-web/src/assets/db/icons.json +++ b/source-web/src/assets/db/icons.json @@ -600,5 +600,14 @@ "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/iconic", "license": "Free", "licenseLink": "https://iconic.app/iconic-pro-license/" + }, + { + "id": 64, + "order": 67, + "name": "Isocons", + "link": "https://www.isocons.app/", + "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/icons/isocons", + "license": "CC BY 4.0 ", + "tags": ["3D"] } ] diff --git a/source-web/src/assets/db/typography.json b/source-web/src/assets/db/typography.json index a45d2b9..c175269 100644 --- a/source-web/src/assets/db/typography.json +++ b/source-web/src/assets/db/typography.json @@ -177,9 +177,17 @@ { "id": 23, "order": 19, - "name": "Font.Download", + "name": "Modern Font Stacks", "link": "https://modernfontstacks.com/", "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/modernfontstacks", "tags": ["CSS"] + }, + { + "id": 24, + "order": 73, + "name": "Typefaces.today", + "link": "https://typefaces.today/", + "img": "https://res.cloudinary.com/cosmocloudinary/image/upload/freesets/typography/typefacestoday", + "license": "Multiple" } ]