├── LICENSE ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.yml │ └── bug_report.yml └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 BearStudio 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 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- 1 | name: Feature request 2 | description: Submit a new feature request 3 | title: "Subject title" 4 | labels: ["enhancement"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking some time to fill out this feature request form! 🙏🏼 10 | - type: checkboxes 11 | attributes: 12 | description: Check first if the feature is not already live the latest version of the starter. If you are unsure, please check it out on the [community page](https://go.bearstudio.fr/start-ui-figma). 13 | options: 14 | - label: Is this feature is not on the latest version of the starter? 15 | required: false 16 | - type: dropdown 17 | id: version 18 | attributes: 19 | label: Type of element concerned 20 | description: What part would benefit this new feature? 21 | options: 22 | - 🎓 Tutorials 23 | - 💻 Web app Desktop [web] 24 | - 📱 Mobile App [native] 25 | - ⭐️ Icons 26 | - 💊 Components 27 | - 💎 Brand 28 | - 🎨 Styles 29 | - 🌈 Colors library 30 | - ➕ Other... 31 | validations: 32 | required: false 33 | - type: textarea 34 | id: which-feature 35 | attributes: 36 | label: What is your feature? 37 | description: Explain us the feature/subject. Drop some screenshots, videos or files to make it clearer. Have you added it on your own file? Do not hesitate to share your feature making a copy of your .fig so we can add it on a future version. 38 | placeholder: What can you see? 39 | validations: 40 | required: true 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Start UI figma

2 | 3 | 4 | [🚀 Start UI [figma]](https://go.bearstudio.fr/start-ui-figma) is a opinionated Figma starter created & maintained by the [BearStudio Team](https://www.bearstudio.fr/team) and other contributors. This repository is used for issue tracking. 5 | 6 | --- 7 | 8 | 9 | ## Getting started 10 | 11 | - Go to [🚀 Start UI [figma]](https://go.bearstudio.fr/start-ui-figma) community page on Figma. 12 | 13 | - **Duplicate** the file with the latest version of [🚀 Start UI [figma]](https://go.bearstudio.fr/start-ui-figma). 14 | 15 | - BONUS: Feel free to give us a like on the [community page](https://go.bearstudio.fr/start-ui-figma) to show your support ❤️ 16 | 17 | 18 | ## Contribution 19 | 20 | You can freely contribute to make [🚀 Start UI [figma]](https://go.bearstudio.fr/start-ui-figma) better. Since the file is on Figma, the process is slightly different than a common GIT project. 21 | 22 | - Create an issue first. So we can check if the fix/update/feature is valuable (don't work for nothing 😉) 23 | - Once we have replied to your issue, you will be able to do all the changes on your own copy of [🚀 Start UI [figma]](https://go.bearstudio.fr/start-ui-figma). 24 | - Finally, upload your `.fig` in the issue and we will be able to update (after review of course 😜) the [main community file](https://go.bearstudio.fr/start-ui-figma). 25 | 26 | 27 | ## Other starters 28 | 29 | If you are more interested to work with code, you can check our starter for web [🚀 Start UI [web]](https://go.bearstudio.fr/start-ui-web) and native [🚀 Start UI [native]](https://go.bearstudio.fr/start-ui-native) 🎉 30 | 31 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Fill a bug report 3 | title: "Issue title" 4 | labels: ["bug"] 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | Thanks for taking some time to fill out this bug report! 🙏🏼 10 | - type: checkboxes 11 | attributes: 12 | description: Check first if the issue is live on the latest version of the starter. If you are unsure, please check it out on the [community page](https://go.bearstudio.fr/start-ui-figma). 13 | options: 14 | - label: Can you reproduce this bug on the latest version of the starter? 15 | required: false 16 | - type: dropdown 17 | id: version 18 | attributes: 19 | label: Type of element concerned 20 | description: Where did you experienced your problem? 21 | options: 22 | - 🎓 Tutorials 23 | - 💻 Web app Desktop [web] 24 | - 📱 Mobile App [native] 25 | - ⭐️ Icons 26 | - 💊 Components 27 | - 💎 Brand 28 | - 🎨 Styles 29 | - 🌈 Colors library 30 | - ➕ Other... 31 | validations: 32 | required: false 33 | - type: textarea 34 | id: what-happened 35 | attributes: 36 | label: What is the problem? 37 | description: Explain us the problem. Drop some screenshots, videos or files to make it clearer. 38 | placeholder: What can you see? 39 | validations: 40 | required: true 41 | - type: textarea 42 | id: expected-behavior 43 | attributes: 44 | label: What do you suggest to improve 45 | description: Have you thought about the solution? Do you have any idea how to fix the issue? Have you fixed it on your own file? Do not hesitate fix it yourself and then make a copy of your .fig. 46 | validations: 47 | required: false 48 | --------------------------------------------------------------------------------