-
Notifications
You must be signed in to change notification settings - Fork 2
feat: Add community projects page #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
7cb037c
Add community projects to the config
Krzemien97 b3bb5e9
Add dummy files for testing & eject some components
Krzemien97 cb002f1
Add AI generated projects for mockups
Krzemien97 a62d1d6
Initial card layout for community projects
Krzemien97 a3b5069
Use correct filepath naming
Krzemien97 9439454
Minor card fixes
Krzemien97 2278d0b
Use content as description
Krzemien97 32ae21c
Add company info display
Krzemien97 a63639f
Add tags.yml
Krzemien97 e700a4d
Card layout adjustments
Krzemien97 5edb738
Add hook for getting community project metadata
Krzemien97 22633ec
Modify blog post page to include company logo
Krzemien97 ce87a13
Add tags comments
Krzemien97 3c20d28
Add tutorial how to add community project
Krzemien97 06ae204
Add license
Krzemien97 f30816a
Update copyright year in LICENSE file to 2026
Krzemien97 d2877fa
Add license notice
Krzemien97 f77fb67
Reformat
Krzemien97 19f18ee
Add scripts to check community project frontmatter
Krzemien97 4d62d25
Remove AI files (except one)
Krzemien97 2bc73b5
Reformat
Krzemien97 d5a8a0a
Apply review comments
Krzemien97 0c63e2c
Typo
Krzemien97 242d6bd
Unify file naming to kebab-case
Krzemien97 e118027
Cleanup component names & update paths
Krzemien97 07ee636
Fix paths in the guide
Krzemien97 61e53e9
Remove the last AI file & add template
Krzemien97 d44ce84
Formatting
Krzemien97 39d1a62
Throw on new tags
Krzemien97 ae486c3
Add placeholder community project
Krzemien97 cf0d87e
Formatting
Krzemien97 477b0a7
Add a section about branching
Krzemien97 3b27f10
Apply review comments
Krzemien97 03216dc
Add CommunityProjectsTags component and implement tag extraction logic
Krzemien97 b56c1fd
Change guide to mention creating forks instead of branches
Krzemien97 d81deb7
feat: Render message about no community projects
Krzemien97 07fb4cc
chore: reformat
Krzemien97 08f5fd0
Merge remote-tracking branch 'origin/development' into feat/community…
bjsowa a95de44
fix: em dash
Krzemien97 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| MIT License | ||
|
|
||
| Copyright (c) 2026 Fictionlab sp. z o.o. | ||
|
|
||
| Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| of this software and associated documentation files (the "Software"), to deal | ||
| in the Software without restriction, including without limitation the rights | ||
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| copies of the Software, and to permit persons to whom the Software is | ||
| furnished to do so, subject to the following conditions: | ||
|
|
||
| The above copyright notice and this permission notice shall be included in all | ||
| copies or substantial portions of the Software. | ||
|
|
||
| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| SOFTWARE. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| --- | ||
| title: My Community Project (max 60 characters) | ||
| description: A brief description of my community project, up to 160 characters. | ||
| authors: | ||
| - name: Author Name | ||
| title: Author Title | ||
| url: https://author-personal-website.com | ||
| image_url: /img/community-projects/author-image.jpg | ||
| socials: | ||
| x: author_x_handle | ||
| github: author_github_handle | ||
| linkedin: author_linkedin_handle | ||
| email: author_email_address | ||
| tags: [tag1, tag2, tag3] | ||
| image: /img/community-projects/project-image.jpg | ||
| company: | ||
| name: Company Name | ||
| url: https://company-website.com | ||
| logo_url: /img/community-projects/company-logo.jpg | ||
| --- | ||
|
|
||
| {/* To see how to use this template, refer to the https://docs.fictionlab.pl/guidelines/add-community-project */} | ||
|
|
||
| # [Community project title] | ||
|
|
||
| [Short description of the community project, displayed on the Community Projects | ||
| page, up to 400 characters.] | ||
|
|
||
| {/* truncate */} | ||
|
|
||
| [Main content of the community project page, including detailed information | ||
| about the project, its features, implementation details, and any other relevant | ||
| information. You can use markdown syntax to format the content, add images, | ||
| links, and other media as needed.] | ||
|
|
||
| {/* Example content */} | ||
|
|
||
| ## Project Overview | ||
|
|
||
| Short introduction to the project, its goals, and the problem it aims to solve. | ||
|
|
||
| ## Key Features | ||
|
|
||
| List of the main features of the project, with brief descriptions for each. | ||
|
|
||
| ## Resources | ||
|
|
||
| Links to any relevant resources, such as the project repository, documentation, | ||
| or related articles. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| --- | ||
|
jasiex01 marked this conversation as resolved.
|
||
| title: Delete after adding first community project | ||
| description: | ||
| Temporary placeholder for the first community project. Please refer to the | ||
| https://docs.fictionlab.pl/guidelines/add-community-project for instructions | ||
| on how to add a new community project. | ||
| authors: | ||
| - name: Author Name | ||
| title: Author Title | ||
| url: https://author-website.com | ||
|
jasiex01 marked this conversation as resolved.
|
||
| image_url: /img/community-projects/author-image.jpg | ||
| socials: | ||
| x: author_x_handle | ||
| github: author_github_handle | ||
| linkedin: author_linkedin_handle | ||
| email: author_email_address | ||
| image: /img/community-projects/project-image.jpg | ||
| tags: [leo-rover] | ||
| company: | ||
| name: Company Name | ||
| url: https://company-website.com | ||
| logo_url: /img/community-projects/company-logo.jpg | ||
| unlisted: true | ||
| --- | ||
|
|
||
| {/* To see how to use this template, refer to the https://docs.fictionlab.pl/guidelines/add-community-project */} | ||
|
|
||
| [Short description of the community project, displayed on the Community Projects | ||
| page, up to 400 characters.] | ||
|
|
||
| {/* truncate */} | ||
|
|
||
| [Main content of the community project page, including detailed information | ||
| about the project, its features, implementation details, and any other relevant | ||
| information. You can use markdown syntax to format the content, add images, | ||
| links, and other media as needed.] | ||
|
|
||
| {/* Example content */} | ||
|
|
||
| ## Project Overview | ||
|
|
||
| Short introduction to the project, its goals, and the problem it aims to solve. | ||
|
|
||
| ## Key Features | ||
|
|
||
| List of the main features of the project, with brief descriptions for each. | ||
|
|
||
| ## Resources | ||
|
|
||
| Links to any relevant resources, such as the project repository, documentation, | ||
| or related articles. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| # Robotic platform related tags | ||
|
|
||
| leo-rover: | ||
| label: Leo Rover | ||
| description: Projects related to the Leo Rover robotic platform. | ||
| permalink: 'leo-rover' | ||
|
|
||
| raph-rover: | ||
| label: Raph Rover | ||
| description: Projects related to the Raph Rover robotic platform. | ||
| permalink: 'raph-rover' | ||
|
|
||
| # Application area tags | ||
|
|
||
| # TBD |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.