Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
2f48d5e
Lint, format, prettier, svelte-check
Lissy93 Aug 24, 2025
9c552ce
Improved layuot, UX, and accessibility
Lissy93 Sep 28, 2025
13210d1
API endpoints for fetching repo data
Lissy93 Aug 24, 2025
8d6e22d
Frameworks detail page
Lissy93 Oct 29, 2025
2c04e7a
Framework data fetching and star history component
Lissy93 Oct 29, 2025
1b00e58
Update framework page
Lissy93 Oct 30, 2025
0e63a4d
Tweaks and improvments
Lissy93 Oct 30, 2025
538904a
Functionality done
Lissy93 Oct 30, 2025
c0b502d
Refactors data to central store
Lissy93 Oct 31, 2025
dd4bea2
Server side hooks
Lissy93 Nov 1, 2025
50b6b1f
Refined loading
Lissy93 Nov 1, 2025
3d01016
Adds framework funding, stackoverflow, jsdeliver and browser compatib…
Lissy93 Nov 1, 2025
014e8c3
Adds contibutors for each framework
Lissy93 Nov 1, 2025
57ce7bc
New responsive grid
Lissy93 Nov 1, 2025
5fd1afd
Refactored
Lissy93 Nov 1, 2025
28a32da
Implemented the comparison page
Lissy93 Nov 1, 2025
d099591
Improved full comparison UI
Lissy93 Nov 1, 2025
34e8b4b
Adds icon assets
Lissy93 Nov 1, 2025
1ff03ac
Creates hero
Lissy93 Nov 1, 2025
9a7ef58
Navigation improvments
Lissy93 Nov 2, 2025
5ea65a4
UI tweaks
Lissy93 Nov 2, 2025
f60bd97
Adds an about page
Lissy93 Nov 2, 2025
2265b2e
Resolved svelte warnings
Lissy93 Nov 2, 2025
5021155
Re-add missing styles
Lissy93 Nov 2, 2025
da27ad8
Small SEO improvments
Lissy93 Nov 2, 2025
8ec0820
Style and seo small fixes
Lissy93 Nov 2, 2025
7079e04
Adds license, MIT 2025
Lissy93 Nov 2, 2025
d87bcc9
Creates error page, for 404,500,etc
Lissy93 Nov 2, 2025
acdaf62
Refreshes framework data
Lissy93 Nov 2, 2025
39d9035
Uses dynamic env instead of static, prevent secrets in bundle
Lissy93 Nov 2, 2025
201e896
Adds review section to framework page
Lissy93 Nov 2, 2025
bc6cc87
Adds icons to headers for sections in framework page
Lissy93 Nov 2, 2025
35f8b0c
Tweaks to framework pages, updated rax color, added animations, shows…
Lissy93 Nov 3, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# GitHub Personal Access Token (optional but recommended)
# This token is used to increase API rate limits for fetching framework data
# Without it, you may hit GitHub's rate limit (60 requests/hour)
# With a token, you get 5000 requests/hour
#
# To create a token:
# 1. Go to https://github.com/settings/tokens
# 2. Click "Generate new token (classic)"
# 3. Select scopes: public_repo (or none for public data only)
# 4. Copy the token and paste it below
GITHUB_TOKEN=your_github_token_here
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2025 Alicia Sykes

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.
Loading