Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpb587/tailwind-config-dataset
https://github.com/dpb587/tailwind-config-dataset
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dpb587/tailwind-config-dataset
- Owner: dpb587
- Created: 2024-03-06T17:12:19.000Z (10 months ago)
- Default Branch: v1.20240306.0
- Last Pushed: 2024-03-06T18:56:06.000Z (10 months ago)
- Last Synced: 2024-10-30T18:13:48.432Z (2 months ago)
- Language: JavaScript
- Size: 11.1 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tailwind Config Report
Some mildly interesting details from analyzing 2788 open source projects that rely on [Tailwind CSS](https://tailwindcss.com/). I am not affiliated with Tailwind Labs, just a casual user of their projects. Originally, [this post](https://twitter.com/adamwathan/status/1762597487443956083) got me curious about some of the practices, so I hacked together some past scripts and similar experiments to generate these results ([source code](https://github.com/dpb587/tailwind-config-reporter)). I have not spent too much time reviewing data quality, so there is still room for improvement.
The following summaries use "Source Owners" to refer to unique organizations/users owning a repository and "Source" to refer to a Tailwind-related path within a repository. Some owners may have multiple repositories, and some repositories may have multiple sources. Gauging by source owners seemed like a slightly better indicator of usage. If only a single source owner makes a particular configuration change, it is generally excluded from the summary tables.
* **[General Usage](./analysis/general.md)** - customized features, disabled core plugins, content file extensions, prefixes
* **[Analyzed Versions](./analysis/versions-analyzed.md)** - related package versions which were resolved and used during analysis
* **[Version Constraints](./analysis/version-constraints.md)** - related package version constraints documented in `package.json` files
* **[All Packages](./analysis/packages.md)** - all packages referenced in `package.json` files
* **[CSS Variable Names](./analysis/css-variable-names.md)** - common variable names found
* **[Config File Duplication](./analysis/config-file-duplication.md)** - duplicate configs used across sources
* Theme Properties - **[animation](./analysis/theme-animation.md)**, **[aspectRatio](./analysis/theme-aspectRatio.md)**, **[backgroundImage](./analysis/theme-backgroundImage.md)**, **[backgroundPosition](./analysis/theme-backgroundPosition.md)**, **[backgroundSize](./analysis/theme-backgroundSize.md)**, **[blur](./analysis/theme-blur.md)**, **[borderRadius](./analysis/theme-borderRadius.md)**, **[borderWidth](./analysis/theme-borderWidth.md)**, **[boxShadow](./analysis/theme-boxShadow.md)**, **[brightness](./analysis/theme-brightness.md)**, **[color](./analysis/theme-color.md)**, **[columns](./analysis/theme-columns.md)**, **[content](./analysis/theme-content.md)**, **[contrast](./analysis/theme-contrast.md)**, **[cursor](./analysis/theme-cursor.md)**, **[flex](./analysis/theme-flex.md)**, **[flexGrow](./analysis/theme-flexGrow.md)**, **[flexShrink](./analysis/theme-flexShrink.md)**, **[fontFamily](./analysis/theme-fontFamily.md)**, **[fontWeight](./analysis/theme-fontWeight.md)**, **[gridAutoRows](./analysis/theme-gridAutoRows.md)**, **[gridColumn](./analysis/theme-gridColumn.md)**, **[gridColumnEnd](./analysis/theme-gridColumnEnd.md)**, **[gridColumnStart](./analysis/theme-gridColumnStart.md)**, **[gridRow](./analysis/theme-gridRow.md)**, **[gridRowEnd](./analysis/theme-gridRowEnd.md)**, **[gridRowStart](./analysis/theme-gridRowStart.md)**, **[gridTemplateColumns](./analysis/theme-gridTemplateColumns.md)**, **[gridTemplateRows](./analysis/theme-gridTemplateRows.md)**, **[hueRotate](./analysis/theme-hueRotate.md)**, **[letterSpacing](./analysis/theme-letterSpacing.md)**, **[lineHeight](./analysis/theme-lineHeight.md)**, **[listStyleType](./analysis/theme-listStyleType.md)**, **[maxWidth](./analysis/theme-maxWidth.md)**, **[minHeight](./analysis/theme-minHeight.md)**, **[minWidth](./analysis/theme-minWidth.md)**, **[opacity](./analysis/theme-opacity.md)**, **[outlineOffset](./analysis/theme-outlineOffset.md)**, **[outlineWidth](./analysis/theme-outlineWidth.md)**, **[ringWidth](./analysis/theme-ringWidth.md)**, **[rotate](./analysis/theme-rotate.md)**, **[saturate](./analysis/theme-saturate.md)**, **[scale](./analysis/theme-scale.md)**, **[skew](./analysis/theme-skew.md)**, **[spacing](./analysis/theme-spacing.md)**, **[strokeWidth](./analysis/theme-strokeWidth.md)**, **[textDecorationThickness](./analysis/theme-textDecorationThickness.md)**, **[textUnderlineOffset](./analysis/theme-textUnderlineOffset.md)**, **[transformOrigin](./analysis/theme-transformOrigin.md)**, **[transitionDelay](./analysis/theme-transitionDelay.md)**, **[transitionDuration](./analysis/theme-transitionDuration.md)**, **[transitionProperty](./analysis/theme-transitionProperty.md)**, **[transitionTimingFunction](./analysis/theme-transitionTimingFunction.md)**, **[willChange](./analysis/theme-willChange.md)**, **[zIndex](./analysis/theme-zIndex.md)**
* Updated Names - shows built-in names where users overwrite default values
* Additional Names - shows user-introduced names and their values
* Value Conventions - shows basic usage of units (e.g. rem, px), CSS functions, and standard keywords *(only supported for some properties)*
* Deleted Names - shows built-in names where users disabled them## Data
In total, 3081 analysis tasks were executed (2788 completed successfully, 293 failed; 2609 used dependency squashing, 472 full installation). Tasks can fail for a number of reasons including: wide range of expected Node build runtimes, outdated package managers, restricted network access and build runtime, and occasional bugs.
The following raw data files are included in this branch for each task:
* `extract-completed` (or `extract-failed`) is an empty marker file which indicates the job completed successfully
* `extract-installed-packages.jsonl` contains the packages and versions used during the analysis (which may be a subset of the original `package.json` file)
* `extract-metadata.jsonl` contains some metadata about the analysis such as project source, times, and analysis behaviors
* `extract-raw-package.json` contains the original contents of the `package.json` file from the source
* `extract-raw-tailwind-config.js` contains the original contents of the `tailwind.config.*` file from the source
* `extract-tailwind-config-baseline.json` contains the baseline tailwind configuration with common, default plugins and no customization
* `extract-tailwind-config-effective.json` contains the effective tailwind configuration with any customizations
* `extract.log` contains the console output generated during analysisThese public sources were discovered primarily via GitHub API based on code search and tailwind-tagged repositories. Some additional requirements were applied, too, such as semi-recent commits, stars, and not being forks. The following are included in this dataset, although this is a small subset of the potential sources which could be analyzed.
| ? | Source | Duration | Data |
| :-: | ------ | -------: | ---- |
| ✅ | [**github.com/0rogerinho/Portifolio**](https://github.com/0rogerinho/Portifolio/tree/main/) | 5s | [Data](./data/github.com/0rogerinho/Portifolio/bWFpbgo/Cg) |
| ✅ | [**github.com/0xGeegZ/ai-micro-saas-starter**](https://github.com/0xGeegZ/ai-micro-saas-starter/tree/master/) | 8s | [Data](./data/github.com/0xGeegZ/ai-micro-saas-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/0xLe0x/space-shooterz**](https://github.com/0xLe0x/space-shooterz/tree/main/) | 19s | [Data](./data/github.com/0xLe0x/space-shooterz/bWFpbgo/Cg) |
| ✅ | [**github.com/0xTranqui/zora-1155-minting-template**](https://github.com/0xTranqui/zora-1155-minting-template/tree/zora1155-minting-page/) | 7s | [Data](./data/github.com/0xTranqui/zora-1155-minting-template/em9yYTExNTUtbWludGluZy1wYWdlCg/Cg) |
| ❌ | [**github.com/100mslive/clubhouse-clone-react**](https://github.com/100mslive/clubhouse-clone-react/tree/main/) | *n/a* | [Data](./data/github.com/100mslive/clubhouse-clone-react/bWFpbgo/Cg) |
| ❌ | [**github.com/100mslive/slack-huddle-clone**](https://github.com/100mslive/slack-huddle-clone/tree/main/) | *n/a* | [Data](./data/github.com/100mslive/slack-huddle-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/100xDevs-hkirat/week-16-bp-repo**](https://github.com/100xDevs-hkirat/week-16-bp-repo/tree/master/web) (`web`) | 14s | [Data](./data/github.com/100xDevs-hkirat/week-16-bp-repo/bWFzdGVyCg/d2ViCg) |
| ✅ | [**github.com/1Panel-dev/1Panel**](https://github.com/1Panel-dev/1Panel/tree/dev/frontend) (`frontend`) | 8s | [Data](./data/github.com/1Panel-dev/1Panel/ZGV2Cg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/1rgs/tokenwiz**](https://github.com/1rgs/tokenwiz/tree/main/frontend) (`frontend`) | 5s | [Data](./data/github.com/1rgs/tokenwiz/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/1whatleytay/saturn**](https://github.com/1whatleytay/saturn/tree/main/) | 8s | [Data](./data/github.com/1whatleytay/saturn/bWFpbgo/Cg) |
| ✅ | [**github.com/2110336-2565-2/sec2-group11-trainder-frontend**](https://github.com/2110336-2565-2/sec2-group11-trainder-frontend/tree/main/) | 9s | [Data](./data/github.com/2110336-2565-2/sec2-group11-trainder-frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/360macky/1spaceX**](https://github.com/360macky/1spaceX/tree/dev/) | 8s | [Data](./data/github.com/360macky/1spaceX/ZGV2Cg/Cg) |
| ✅ | [**github.com/3x1io/vilt-admin**](https://github.com/3x1io/vilt-admin/tree/master/) | 10s | [Data](./data/github.com/3x1io/vilt-admin/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/4-design/for-ui**](https://github.com/4-design/for-ui/tree/main/packages%2Ffor-ui) (`packages/for-ui`) | 6s | [Data](./data/github.com/4-design/for-ui/bWFpbgo/cGFja2FnZXMvZm9yLXVpCg) |
| ✅ | [**github.com/4044ever/Hugo-Tailwind-3.2**](https://github.com/4044ever/Hugo-Tailwind-3.2/tree/main/) | 8s | [Data](./data/github.com/4044ever/Hugo-Tailwind-3.2/bWFpbgo/Cg) |
| ✅ | [**github.com/42atomys/stud42**](https://github.com/42atomys/stud42/tree/main/web%2Fui) (`web/ui`) | 15s | [Data](./data/github.com/42atomys/stud42/bWFpbgo/d2ViL3VpCg) |
| ✅ | [**github.com/516310460/NuxtUI**](https://github.com/516310460/NuxtUI/tree/master/) | 11s | [Data](./data/github.com/516310460/NuxtUI/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/90sPixelDev/rp-rooms**](https://github.com/90sPixelDev/rp-rooms/tree/master/) | 5s | [Data](./data/github.com/90sPixelDev/rp-rooms/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/A-BMT02/Spost**](https://github.com/A-BMT02/Spost/tree/main/client) (`client`) | 7s | [Data](./data/github.com/A-BMT02/Spost/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/A-BMT02/snippets**](https://github.com/A-BMT02/snippets/tree/main/) | 8s | [Data](./data/github.com/A-BMT02/snippets/bWFpbgo/Cg) |
| ✅ | [**github.com/ADKcodeXD/Myblog-Vue3viteTs**](https://github.com/ADKcodeXD/Myblog-Vue3viteTs/tree/main/) | 12s | [Data](./data/github.com/ADKcodeXD/Myblog-Vue3viteTs/bWFpbgo/Cg) |
| ✅ | [**github.com/AFCMS/minetest-skin-server**](https://github.com/AFCMS/minetest-skin-server/tree/master/frontend) (`frontend`) | 5s | [Data](./data/github.com/AFCMS/minetest-skin-server/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/ASU-CodeDevils/codedevils.org**](https://github.com/ASU-CodeDevils/codedevils.org/tree/main/) | 7s | [Data](./data/github.com/ASU-CodeDevils/codedevils.org/bWFpbgo/Cg) |
| ✅ | [**github.com/Abdullah-moiz/E-commerce-NEXT-APP**](https://github.com/Abdullah-moiz/E-commerce-NEXT-APP/tree/main/) | 8s | [Data](./data/github.com/Abdullah-moiz/E-commerce-NEXT-APP/bWFpbgo/Cg) |
| ✅ | [**github.com/Abhi-Bhat18/Juke-Stream**](https://github.com/Abhi-Bhat18/Juke-Stream/tree/main/) | 9s | [Data](./data/github.com/Abhi-Bhat18/Juke-Stream/bWFpbgo/Cg) |
| ✅ | [**github.com/AccordBox/wagtail-tailwind-blog**](https://github.com/AccordBox/wagtail-tailwind-blog/tree/master/) | 8s | [Data](./data/github.com/AccordBox/wagtail-tailwind-blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Afordin/aforshow**](https://github.com/Afordin/aforshow/tree/master/) | 34s | [Data](./data/github.com/Afordin/aforshow/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Ahsan-Ehtesham/Ecommerce-Store-using-NextJS**](https://github.com/Ahsan-Ehtesham/Ecommerce-Store-using-NextJS/tree/main/) | 9s | [Data](./data/github.com/Ahsan-Ehtesham/Ecommerce-Store-using-NextJS/bWFpbgo/Cg) |
| ✅ | [**github.com/Ajay-056/Spotify-Clone-NextJS-12**](https://github.com/Ajay-056/Spotify-Clone-NextJS-12/tree/main/) | 8s | [Data](./data/github.com/Ajay-056/Spotify-Clone-NextJS-12/bWFpbgo/Cg) |
| ✅ | [**github.com/AkashRajpurohit/howtoprofessionallysay**](https://github.com/AkashRajpurohit/howtoprofessionallysay/tree/main/) | 9s | [Data](./data/github.com/AkashRajpurohit/howtoprofessionallysay/bWFpbgo/Cg) |
| ✅ | [**github.com/Akbaroke/indoquran.my.id**](https://github.com/Akbaroke/indoquran.my.id/tree/main/) | 9s | [Data](./data/github.com/Akbaroke/indoquran.my.id/bWFpbgo/Cg) |
| ✅ | [**github.com/Akinyemi-samuel/Twitter-Clone**](https://github.com/Akinyemi-samuel/Twitter-Clone/tree/main/frontend) (`frontend`) | 5s | [Data](./data/github.com/Akinyemi-samuel/Twitter-Clone/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/Akryum/floating-vue**](https://github.com/Akryum/floating-vue/tree/main/docs) (`docs`) | 26s | [Data](./data/github.com/Akryum/floating-vue/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/AlduinApp/alduin**](https://github.com/AlduinApp/alduin/tree/main/) | 8s | [Data](./data/github.com/AlduinApp/alduin/bWFpbgo/Cg) |
| ✅ | [**github.com/Aleksi44/django-admin-tailwind**](https://github.com/Aleksi44/django-admin-tailwind/tree/master/) | 9s | [Data](./data/github.com/Aleksi44/django-admin-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AlexKratky/vue-camera-lib**](https://github.com/AlexKratky/vue-camera-lib/tree/master/) | 7s | [Data](./data/github.com/AlexKratky/vue-camera-lib/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AlexandroMtzG/remix-page-blocks**](https://github.com/AlexandroMtzG/remix-page-blocks/tree/main/) | 11s | [Data](./data/github.com/AlexandroMtzG/remix-page-blocks/bWFpbgo/Cg) |
| ✅ | [**github.com/AlfredoRamos/phpbb-ext-imgur**](https://github.com/AlfredoRamos/phpbb-ext-imgur/tree/master/) | 7s | [Data](./data/github.com/AlfredoRamos/phpbb-ext-imgur/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AliReza1083/AniLearn.dev**](https://github.com/AliReza1083/AniLearn.dev/tree/main/) | 7s | [Data](./data/github.com/AliReza1083/AniLearn.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/Aman-Mandal/groovy**](https://github.com/Aman-Mandal/groovy/tree/Main/) | 11s | [Data](./data/github.com/Aman-Mandal/groovy/TWFpbgo/Cg) |
| ✅ | [**github.com/AmitDigga/fabric-video-editor**](https://github.com/AmitDigga/fabric-video-editor/tree/master/) | 8s | [Data](./data/github.com/AmitDigga/fabric-video-editor/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AmitMirgal/nftoupon**](https://github.com/AmitMirgal/nftoupon/tree/main/packages%2Fnft-vyapar-kit) (`packages/nft-vyapar-kit`) | 10s | [Data](./data/github.com/AmitMirgal/nftoupon/bWFpbgo/cGFja2FnZXMvbmZ0LXZ5YXBhci1raXQK) |
| ✅ | [**github.com/AmruthPillai/Reactive-Resume**](https://github.com/AmruthPillai/Reactive-Resume/tree/main/) | 9s | [Data](./data/github.com/AmruthPillai/Reactive-Resume/bWFpbgo/Cg) |
| ✅ | [**github.com/AndreasWintherMoen/jobb**](https://github.com/AndreasWintherMoen/jobb/tree/master/frontend) (`frontend`) | 4s | [Data](./data/github.com/AndreasWintherMoen/jobb/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/AndronixApp/andronix-website-base**](https://github.com/AndronixApp/andronix-website-base/tree/master/) | 17s | [Data](./data/github.com/AndronixApp/andronix-website-base/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AnishDe12020/portfolio**](https://github.com/AnishDe12020/portfolio/tree/v2/) | 9s | [Data](./data/github.com/AnishDe12020/portfolio/djIK/Cg) |
| ✅ | [**github.com/AnoyiX/anoyi**](https://github.com/AnoyiX/anoyi/tree/master/) | 10s | [Data](./data/github.com/AnoyiX/anoyi/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AnthonyNet/morbus_tschengi**](https://github.com/AnthonyNet/morbus_tschengi/tree/main/) | 7s | [Data](./data/github.com/AnthonyNet/morbus_tschengi/bWFpbgo/Cg) |
| ✅ | [**github.com/AnupK1234/MealMatters**](https://github.com/AnupK1234/MealMatters/tree/main/client) (`client`) | 7s | [Data](./data/github.com/AnupK1234/MealMatters/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/Apestein/better-react-infinite-scroll**](https://github.com/Apestein/better-react-infinite-scroll/tree/main/) | 8s | [Data](./data/github.com/Apestein/better-react-infinite-scroll/bWFpbgo/Cg) |
| ✅ | [**github.com/AppFlowy-IO/AppFlowy**](https://github.com/AppFlowy-IO/AppFlowy/tree/main/frontend%2Fappflowy_tauri) (`frontend/appflowy_tauri`) | 8s | [Data](./data/github.com/AppFlowy-IO/AppFlowy/bWFpbgo/ZnJvbnRlbmQvYXBwZmxvd3lfdGF1cmkK) |
| ✅ | [**github.com/Arvind-4/E-Commerce**](https://github.com/Arvind-4/E-Commerce/tree/main/apps%2Fwww) (`apps/www`) | 9s | [Data](./data/github.com/Arvind-4/E-Commerce/bWFpbgo/YXBwcy93d3cK) |
| ✅ | [**github.com/AryeoHQ/monitored-jobs**](https://github.com/AryeoHQ/monitored-jobs/tree/main/) | 9s | [Data](./data/github.com/AryeoHQ/monitored-jobs/bWFpbgo/Cg) |
| ✅ | [**github.com/Assios/chessguessr**](https://github.com/Assios/chessguessr/tree/master/) | 9s | [Data](./data/github.com/Assios/chessguessr/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/AthanorLabs/atomic-swap**](https://github.com/AthanorLabs/atomic-swap/tree/master/ui) (`ui`) | 10s | [Data](./data/github.com/AthanorLabs/atomic-swap/bWFzdGVyCg/dWkK) |
| ✅ | [**github.com/AttackOnMorty/github-ranking**](https://github.com/AttackOnMorty/github-ranking/tree/main/) | 7s | [Data](./data/github.com/AttackOnMorty/github-ranking/bWFpbgo/Cg) |
| ✅ | [**github.com/AugusDogus/santahat.gg**](https://github.com/AugusDogus/santahat.gg/tree/main/) | 6s | [Data](./data/github.com/AugusDogus/santahat.gg/bWFpbgo/Cg) |
| ✅ | [**github.com/AviAvinav/chai**](https://github.com/AviAvinav/chai/tree/main/) | 22s | [Data](./data/github.com/AviAvinav/chai/bWFpbgo/Cg) |
| ✅ | [**github.com/Ayush2966/Article-AI**](https://github.com/Ayush2966/Article-AI/tree/main/) | 9s | [Data](./data/github.com/Ayush2966/Article-AI/bWFpbgo/Cg) |
| ✅ | [**github.com/BLamy/nextjs-ai-starter**](https://github.com/BLamy/nextjs-ai-starter/tree/main/) | 9s | [Data](./data/github.com/BLamy/nextjs-ai-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/BUMBAIYA/kanban**](https://github.com/BUMBAIYA/kanban/tree/master/) | 9s | [Data](./data/github.com/BUMBAIYA/kanban/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/BaihakiTanjung/Portofolio**](https://github.com/BaihakiTanjung/Portofolio/tree/master/) | 11s | [Data](./data/github.com/BaihakiTanjung/Portofolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Barre/privaxy**](https://github.com/Barre/privaxy/tree/main/web_frontend) (`web_frontend`) | 6s | [Data](./data/github.com/Barre/privaxy/bWFpbgo/d2ViX2Zyb250ZW5kCg) |
| ❌ | [**github.com/Bartek532/rssmarkable**](https://github.com/Bartek532/rssmarkable/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/Bartek532/rssmarkable/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/BartoszJarocki/cv**](https://github.com/BartoszJarocki/cv/tree/main/) | 9s | [Data](./data/github.com/BartoszJarocki/cv/bWFpbgo/Cg) |
| ✅ | [**github.com/BayBreezy/analytics-ui**](https://github.com/BayBreezy/analytics-ui/tree/main/) | 25s | [Data](./data/github.com/BayBreezy/analytics-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/BayBreezy/nuxt-3-email-dashboard**](https://github.com/BayBreezy/nuxt-3-email-dashboard/tree/main/) | 7s | [Data](./data/github.com/BayBreezy/nuxt-3-email-dashboard/bWFpbgo/Cg) |
| ❌ | [**github.com/Benbinbin/TagDown**](https://github.com/Benbinbin/TagDown/tree/main/) | *n/a* | [Data](./data/github.com/Benbinbin/TagDown/bWFpbgo/Cg) |
| ✅ | [**github.com/BetaNYC/nyc-boundaries**](https://github.com/BetaNYC/nyc-boundaries/tree/main/) | 15s | [Data](./data/github.com/BetaNYC/nyc-boundaries/bWFpbgo/Cg) |
| ✅ | [**github.com/BeyondRGB/Imaging-Art-beyond-RGB**](https://github.com/BeyondRGB/Imaging-Art-beyond-RGB/tree/master/frontend) (`frontend`) | 7s | [Data](./data/github.com/BeyondRGB/Imaging-Art-beyond-RGB/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/BibliothecaDAO/RealmsWorld**](https://github.com/BibliothecaDAO/RealmsWorld/tree/main/apps%2Fnextjs) (`apps/nextjs`) | 2m 18s | [Data](./data/github.com/BibliothecaDAO/RealmsWorld/bWFpbgo/YXBwcy9uZXh0anMK) |
| ❌ | [**github.com/BibliothecaDAO/RealmsWorld**](https://github.com/BibliothecaDAO/RealmsWorld/tree/main/apps%2Fui) (`apps/ui`) | *n/a* | [Data](./data/github.com/BibliothecaDAO/RealmsWorld/bWFpbgo/YXBwcy91aQo) |
| ❌ | [**github.com/BibliothecaDAO/realms-react**](https://github.com/BibliothecaDAO/realms-react/tree/develop/apps%2Fatlas) (`apps/atlas`) | *n/a* | [Data](./data/github.com/BibliothecaDAO/realms-react/ZGV2ZWxvcAo/YXBwcy9hdGxhcwo) |
| ❌ | [**github.com/BibliothecaDAO/realms-react**](https://github.com/BibliothecaDAO/realms-react/tree/develop/packages%2Fui-lib) (`packages/ui-lib`) | *n/a* | [Data](./data/github.com/BibliothecaDAO/realms-react/ZGV2ZWxvcAo/cGFja2FnZXMvdWktbGliCg) |
| ✅ | [**github.com/BinarCode/vue3-starter-template**](https://github.com/BinarCode/vue3-starter-template/tree/master/) | 8s | [Data](./data/github.com/BinarCode/vue3-starter-template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/BishopFox/sliver**](https://github.com/BishopFox/sliver/tree/master/docs%2Fsliver-docs) (`docs/sliver-docs`) | 31s | [Data](./data/github.com/BishopFox/sliver/bWFzdGVyCg/ZG9jcy9zbGl2ZXItZG9jcwo) |
| ✅ | [**github.com/Blair2004/NexoPOS**](https://github.com/Blair2004/NexoPOS/tree/master/) | 10s | [Data](./data/github.com/Blair2004/NexoPOS/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Bootstrap-Academy/frontend**](https://github.com/Bootstrap-Academy/frontend/tree/develop/) | 6s | [Data](./data/github.com/Bootstrap-Academy/frontend/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/Borodutch/localizer-frontend**](https://github.com/Borodutch/localizer-frontend/tree/main/) | 13s | [Data](./data/github.com/Borodutch/localizer-frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/Bowen7/blog**](https://github.com/Bowen7/blog/tree/master/) | 8s | [Data](./data/github.com/Bowen7/blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/BraydenTW/braydentw.io**](https://github.com/BraydenTW/braydentw.io/tree/main/) | 9s | [Data](./data/github.com/BraydenTW/braydentw.io/bWFpbgo/Cg) |
| ✅ | [**github.com/BrentWMiller/iambrent.com**](https://github.com/BrentWMiller/iambrent.com/tree/master/) | 5m 31s | [Data](./data/github.com/BrentWMiller/iambrent.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/BrookJeynes/slime-rancher-2-interactive-map**](https://github.com/BrookJeynes/slime-rancher-2-interactive-map/tree/main/) | 9s | [Data](./data/github.com/BrookJeynes/slime-rancher-2-interactive-map/bWFpbgo/Cg) |
| ✅ | [**github.com/BryceRussell/astro-minecraft-theme**](https://github.com/BryceRussell/astro-minecraft-theme/tree/master/) | 15s | [Data](./data/github.com/BryceRussell/astro-minecraft-theme/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Bryght7/zapquaker**](https://github.com/Bryght7/zapquaker/tree/master/) | 10s | [Data](./data/github.com/Bryght7/zapquaker/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/BuGuangshuo/MoneyManageSystem**](https://github.com/BuGuangshuo/MoneyManageSystem/tree/master/) | 9s | [Data](./data/github.com/BuGuangshuo/MoneyManageSystem/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/BuilderIO/qwik**](https://github.com/BuilderIO/qwik/tree/main/packages%2Fdocs) (`packages/docs`) | *n/a* | [Data](./data/github.com/BuilderIO/qwik/bWFpbgo/cGFja2FnZXMvZG9jcwo) |
| ✅ | [**github.com/BuilderIO/qwik**](https://github.com/BuilderIO/qwik/tree/main/packages%2Finsights) (`packages/insights`) | 2m 58s | [Data](./data/github.com/BuilderIO/qwik/bWFpbgo/cGFja2FnZXMvaW5zaWdodHMK) |
| ✅ | [**github.com/BuilderIO/qwik-docs-es**](https://github.com/BuilderIO/qwik-docs-es/tree/main/) | 7s | [Data](./data/github.com/BuilderIO/qwik-docs-es/bWFpbgo/Cg) |
| ✅ | [**github.com/ByMykel/counter-strike-items**](https://github.com/ByMykel/counter-strike-items/tree/main/) | 5s | [Data](./data/github.com/ByMykel/counter-strike-items/bWFpbgo/Cg) |
| ❌ | [**github.com/CJY0208/pro-components**](https://github.com/CJY0208/pro-components/tree/main/) | *n/a* | [Data](./data/github.com/CJY0208/pro-components/bWFpbgo/Cg) |
| ✅ | [**github.com/COS301-SE-2022/Intelligent-VMS-Visitor-Management-System-**](https://github.com/COS301-SE-2022/Intelligent-VMS-Visitor-Management-System-/tree/main/client) (`client`) | 11s | [Data](./data/github.com/COS301-SE-2022/Intelligent-VMS-Visitor-Management-System-/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/CaliCastle/cali-fm**](https://github.com/CaliCastle/cali-fm/tree/headless/) | 8s | [Data](./data/github.com/CaliCastle/cali-fm/aGVhZGxlc3MK/Cg) |
| ✅ | [**github.com/CaliCastle/cali.so**](https://github.com/CaliCastle/cali.so/tree/main/) | 9s | [Data](./data/github.com/CaliCastle/cali.so/bWFpbgo/Cg) |
| ✅ | [**github.com/CanX-Script/cx_welcome**](https://github.com/CanX-Script/cx_welcome/tree/master/web) (`web`) | 5s | [Data](./data/github.com/CanX-Script/cx_welcome/bWFzdGVyCg/d2ViCg) |
| ✅ | [**github.com/CaptainCodeman/svelte-form-helper**](https://github.com/CaptainCodeman/svelte-form-helper/tree/master/) | 7s | [Data](./data/github.com/CaptainCodeman/svelte-form-helper/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/CaptainCodeman/svelte-headlessui**](https://github.com/CaptainCodeman/svelte-headlessui/tree/master/) | 8s | [Data](./data/github.com/CaptainCodeman/svelte-headlessui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/CaptainCodeman/sveltekit-dark-mode**](https://github.com/CaptainCodeman/sveltekit-dark-mode/tree/master/) | 7s | [Data](./data/github.com/CaptainCodeman/sveltekit-dark-mode/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/CatalystDevOrg/Catalyst**](https://github.com/CatalystDevOrg/Catalyst/tree/develop/) | 9s | [Data](./data/github.com/CatalystDevOrg/Catalyst/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/CerberusChaos/Starknet-Dapp-Template**](https://github.com/CerberusChaos/Starknet-Dapp-Template/tree/main/) | 7s | [Data](./data/github.com/CerberusChaos/Starknet-Dapp-Template/bWFpbgo/Cg) |
| ✅ | [**github.com/ChangoMan/nextjs-mdx-blog**](https://github.com/ChangoMan/nextjs-mdx-blog/tree/main/) | 10s | [Data](./data/github.com/ChangoMan/nextjs-mdx-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/Charlie85270/tail-kit**](https://github.com/Charlie85270/tail-kit/tree/main/) | 12s | [Data](./data/github.com/Charlie85270/tail-kit/bWFpbgo/Cg) |
| ✅ | [**github.com/ChaterV/webpack5-multi-entry**](https://github.com/ChaterV/webpack5-multi-entry/tree/master/) | 6s | [Data](./data/github.com/ChaterV/webpack5-multi-entry/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fchiconnect-bank-api-payout) (`submissions/chiconnect-bank-api-payout`) | 9s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvY2hpY29ubmVjdC1iYW5rLWFwaS1wYXlvdXQK) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fchiconnect-giftcard-payout) (`submissions/chiconnect-giftcard-payout`) | 9s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvY2hpY29ubmVjdC1naWZ0Y2FyZC1wYXlvdXQK) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fchiconnect-laravel-web-app) (`submissions/chiconnect-laravel-web-app`) | 9s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvY2hpY29ubmVjdC1sYXJhdmVsLXdlYi1hcHAK) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fchiconnect-mobile-money-payout) (`submissions/chiconnect-mobile-money-payout`) | 8s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvY2hpY29ubmVjdC1tb2JpbGUtbW9uZXktcGF5b3V0Cg) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fchimap) (`submissions/chimap`) | 9s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvY2hpbWFwCg) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fpay-paddy) (`submissions/pay-paddy`) | 7s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvcGF5LXBhZGR5Cg) |
| ✅ | [**github.com/Chimoney/chimoney-community-projects**](https://github.com/Chimoney/chimoney-community-projects/tree/main/submissions%2Fsecret-santa) (`submissions/secret-santa`) | 9s | [Data](./data/github.com/Chimoney/chimoney-community-projects/bWFpbgo/c3VibWlzc2lvbnMvc2VjcmV0LXNhbnRhCg) |
| ✅ | [**github.com/Chinwike1/react-email-app**](https://github.com/Chinwike1/react-email-app/tree/main/) | 9s | [Data](./data/github.com/Chinwike1/react-email-app/bWFpbgo/Cg) |
| ✅ | [**github.com/ChrisAbdo/MotionVariants**](https://github.com/ChrisAbdo/MotionVariants/tree/main/) | 9s | [Data](./data/github.com/ChrisAbdo/MotionVariants/bWFpbgo/Cg) |
| ✅ | [**github.com/ClickHouse/HouseClick**](https://github.com/ClickHouse/HouseClick/tree/main/HouseClick) (`HouseClick`) | 11s | [Data](./data/github.com/ClickHouse/HouseClick/bWFpbgo/SG91c2VDbGljawo) |
| ✅ | [**github.com/Cloudflare-Mining/Cloudflare-Datamining**](https://github.com/Cloudflare-Mining/Cloudflare-Datamining/tree/main/site) (`site`) | 59s | [Data](./data/github.com/Cloudflare-Mining/Cloudflare-Datamining/bWFpbgo/c2l0ZQo) |
| ✅ | [**github.com/Cloudhunter/label-checker**](https://github.com/Cloudhunter/label-checker/tree/main/) | 5s | [Data](./data/github.com/Cloudhunter/label-checker/bWFpbgo/Cg) |
| ✅ | [**github.com/Clueless-Community/clueless-official-website**](https://github.com/Clueless-Community/clueless-official-website/tree/main/) | 7s | [Data](./data/github.com/Clueless-Community/clueless-official-website/bWFpbgo/Cg) |
| ✅ | [**github.com/Code4PuertoRico/contratospr-web**](https://github.com/Code4PuertoRico/contratospr-web/tree/main/) | 12s | [Data](./data/github.com/Code4PuertoRico/contratospr-web/bWFpbgo/Cg) |
| ✅ | [**github.com/CodeScrapper1/Bloging-app-next-14**](https://github.com/CodeScrapper1/Bloging-app-next-14/tree/main/) | 6s | [Data](./data/github.com/CodeScrapper1/Bloging-app-next-14/bWFpbgo/Cg) |
| ✅ | [**github.com/Collected-Notes/static-template-nextjs**](https://github.com/Collected-Notes/static-template-nextjs/tree/master/) | 10s | [Data](./data/github.com/Collected-Notes/static-template-nextjs/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ComputerSocietyVITC/Annual-Yearbook**](https://github.com/ComputerSocietyVITC/Annual-Yearbook/tree/master/) | 7s | [Data](./data/github.com/ComputerSocietyVITC/Annual-Yearbook/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ComputerSocietyVITC/Question**](https://github.com/ComputerSocietyVITC/Question/tree/brainstorming/) | 7s | [Data](./data/github.com/ComputerSocietyVITC/Question/YnJhaW5zdG9ybWluZwo/Cg) |
| ✅ | [**github.com/Computerization/Enspire**](https://github.com/Computerization/Enspire/tree/next/) | 34s | [Data](./data/github.com/Computerization/Enspire/bmV4dAo/Cg) |
| ❌ | [**github.com/Contentrain/rain-of-change**](https://github.com/Contentrain/rain-of-change/tree/main/) | *n/a* | [Data](./data/github.com/Contentrain/rain-of-change/bWFpbgo/Cg) |
| ✅ | [**github.com/Copystrike/keycloakify-tailwind-theme**](https://github.com/Copystrike/keycloakify-tailwind-theme/tree/master/) | 8s | [Data](./data/github.com/Copystrike/keycloakify-tailwind-theme/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/CraigChat/craig**](https://github.com/CraigChat/craig/tree/master/apps%2Fdashboard) (`apps/dashboard`) | 9s | [Data](./data/github.com/CraigChat/craig/bWFzdGVyCg/YXBwcy9kYXNoYm9hcmQK) |
| ✅ | [**github.com/CraigChat/craig**](https://github.com/CraigChat/craig/tree/master/apps%2Fdownload) (`apps/download`) | 9s | [Data](./data/github.com/CraigChat/craig/bWFzdGVyCg/YXBwcy9kb3dubG9hZAo) |
| ✅ | [**github.com/Crappy-Birds/frontend**](https://github.com/Crappy-Birds/frontend/tree/main/) | 6s | [Data](./data/github.com/Crappy-Birds/frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/CriticalMoments/CMSaasStarter**](https://github.com/CriticalMoments/CMSaasStarter/tree/main/) | 6s | [Data](./data/github.com/CriticalMoments/CMSaasStarter/bWFpbgo/Cg) |
| ✅ | [**github.com/CrystallizeAPI/boilerplates**](https://github.com/CrystallizeAPI/boilerplates/tree/main/components%2Fastrojs) (`components/astrojs`) | 28s | [Data](./data/github.com/CrystallizeAPI/boilerplates/bWFpbgo/Y29tcG9uZW50cy9hc3Ryb2pzCg) |
| ✅ | [**github.com/CrystallizeAPI/boilerplates**](https://github.com/CrystallizeAPI/boilerplates/tree/main/components%2Fproduct-configurator) (`components/product-configurator`) | 11s | [Data](./data/github.com/CrystallizeAPI/boilerplates/bWFpbgo/Y29tcG9uZW50cy9wcm9kdWN0LWNvbmZpZ3VyYXRvcgo) |
| ✅ | [**github.com/CrystallizeAPI/boilerplates**](https://github.com/CrystallizeAPI/boilerplates/tree/main/components%2Fsvelte) (`components/svelte`) | 11s | [Data](./data/github.com/CrystallizeAPI/boilerplates/bWFpbgo/Y29tcG9uZW50cy9zdmVsdGUK) |
| ✅ | [**github.com/Cwarcup/nextjs-tailwind-portfolio**](https://github.com/Cwarcup/nextjs-tailwind-portfolio/tree/main/) | 5s | [Data](./data/github.com/Cwarcup/nextjs-tailwind-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/DAO-Community-VITC/DAOboard**](https://github.com/DAO-Community-VITC/DAOboard/tree/main/) | 5s | [Data](./data/github.com/DAO-Community-VITC/DAOboard/bWFpbgo/Cg) |
| ✅ | [**github.com/DLabbate/stock-dashboard**](https://github.com/DLabbate/stock-dashboard/tree/master/) | 8s | [Data](./data/github.com/DLabbate/stock-dashboard/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/DTS-STN/eligibility-estimator**](https://github.com/DTS-STN/eligibility-estimator/tree/develop/) | *n/a* | [Data](./data/github.com/DTS-STN/eligibility-estimator/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/DalSoft/create-react-app-webpack-5-module-federation-tailwind-typeScript**](https://github.com/DalSoft/create-react-app-webpack-5-module-federation-tailwind-typeScript/tree/main/app1) (`app1`) | 10s | [Data](./data/github.com/DalSoft/create-react-app-webpack-5-module-federation-tailwind-typeScript/bWFpbgo/YXBwMQo) |
| ✅ | [**github.com/DalSoft/create-react-app-webpack-5-module-federation-tailwind-typeScript**](https://github.com/DalSoft/create-react-app-webpack-5-module-federation-tailwind-typeScript/tree/main/app2) (`app2`) | 11s | [Data](./data/github.com/DalSoft/create-react-app-webpack-5-module-federation-tailwind-typeScript/bWFpbgo/YXBwMgo) |
| ✅ | [**github.com/Daltonic/adulamNFT**](https://github.com/Daltonic/adulamNFT/tree/main/) | 9s | [Data](./data/github.com/Daltonic/adulamNFT/bWFpbgo/Cg) |
| ✅ | [**github.com/Daltonic/dapplottery**](https://github.com/Daltonic/dapplottery/tree/main/) | 8s | [Data](./data/github.com/Daltonic/dapplottery/bWFpbgo/Cg) |
| ✅ | [**github.com/Daltonic/tailwind_ethers_starter_kit**](https://github.com/Daltonic/tailwind_ethers_starter_kit/tree/main/) | 8s | [Data](./data/github.com/Daltonic/tailwind_ethers_starter_kit/bWFpbgo/Cg) |
| ✅ | [**github.com/Daltonic/tailwind_truffle_starter_kit**](https://github.com/Daltonic/tailwind_truffle_starter_kit/tree/master/) | 7s | [Data](./data/github.com/Daltonic/tailwind_truffle_starter_kit/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Danzo7/doctorIO**](https://github.com/Danzo7/doctorIO/tree/master/) | 9s | [Data](./data/github.com/Danzo7/doctorIO/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Darkrove/darkspace**](https://github.com/Darkrove/darkspace/tree/main/) | 8s | [Data](./data/github.com/Darkrove/darkspace/bWFpbgo/Cg) |
| ✅ | [**github.com/Dashibase/dashibase-insert**](https://github.com/Dashibase/dashibase-insert/tree/main/) | 9s | [Data](./data/github.com/Dashibase/dashibase-insert/bWFpbgo/Cg) |
| ✅ | [**github.com/Dashibase/lotion**](https://github.com/Dashibase/lotion/tree/main/) | 11s | [Data](./data/github.com/Dashibase/lotion/bWFpbgo/Cg) |
| ✅ | [**github.com/Datapack-Hub/frontend**](https://github.com/Datapack-Hub/frontend/tree/main/) | 7s | [Data](./data/github.com/Datapack-Hub/frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/DawChihLiou/qwik-vs-next**](https://github.com/DawChihLiou/qwik-vs-next/tree/main/apps%2Fnext) (`apps/next`) | 11s | [Data](./data/github.com/DawChihLiou/qwik-vs-next/bWFpbgo/YXBwcy9uZXh0Cg) |
| ✅ | [**github.com/DawChihLiou/qwik-vs-next**](https://github.com/DawChihLiou/qwik-vs-next/tree/main/apps%2Fqwik) (`apps/qwik`) | 10s | [Data](./data/github.com/DawChihLiou/qwik-vs-next/bWFpbgo/YXBwcy9xd2lrCg) |
| ✅ | [**github.com/DelhinRharl/car-booking-service-front-end**](https://github.com/DelhinRharl/car-booking-service-front-end/tree/dev/) | 8s | [Data](./data/github.com/DelhinRharl/car-booking-service-front-end/ZGV2Cg/Cg) |
| ✅ | [**github.com/Demokratis-ch/demokratis-ch**](https://github.com/Demokratis-ch/demokratis-ch/tree/development/) | 8s | [Data](./data/github.com/Demokratis-ch/demokratis-ch/ZGV2ZWxvcG1lbnQK/Cg) |
| ✅ | [**github.com/DennisSmuda/dennissmuda-website**](https://github.com/DennisSmuda/dennissmuda-website/tree/master/) | 8s | [Data](./data/github.com/DennisSmuda/dennissmuda-website/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/DerYeger/wiener-time**](https://github.com/DerYeger/wiener-time/tree/main/) | 9s | [Data](./data/github.com/DerYeger/wiener-time/bWFpbgo/Cg) |
| ✅ | [**github.com/Desdaemon/tauri-dioxus**](https://github.com/Desdaemon/tauri-dioxus/tree/main/) | 7s | [Data](./data/github.com/Desdaemon/tauri-dioxus/bWFpbgo/Cg) |
| ✅ | [**github.com/DevLeonardoCommunity/github-stats**](https://github.com/DevLeonardoCommunity/github-stats/tree/main/) | 7s | [Data](./data/github.com/DevLeonardoCommunity/github-stats/bWFpbgo/Cg) |
| ✅ | [**github.com/Devalphaspace/animated_portfolio_website**](https://github.com/Devalphaspace/animated_portfolio_website/tree/main/) | 5s | [Data](./data/github.com/Devalphaspace/animated_portfolio_website/bWFpbgo/Cg) |
| ✅ | [**github.com/Developer-DAO/web3-ui**](https://github.com/Developer-DAO/web3-ui/tree/main/apps%2Fdocs) (`apps/docs`) | 9s | [Data](./data/github.com/Developer-DAO/web3-ui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/Devessier/temporal-electronic-signature**](https://github.com/Devessier/temporal-electronic-signature/tree/main/packages%2Fapp) (`packages/app`) | 9s | [Data](./data/github.com/Devessier/temporal-electronic-signature/bWFpbgo/cGFja2FnZXMvYXBwCg) |
| ✅ | [**github.com/Devzstudio/tailwind_to_css**](https://github.com/Devzstudio/tailwind_to_css/tree/main/) | 9s | [Data](./data/github.com/Devzstudio/tailwind_to_css/bWFpbgo/Cg) |
| ✅ | [**github.com/Dharmik48/seeit**](https://github.com/Dharmik48/seeit/tree/main/) | 5s | [Data](./data/github.com/Dharmik48/seeit/bWFpbgo/Cg) |
| ✅ | [**github.com/Dhravya/notty**](https://github.com/Dhravya/notty/tree/main/) | 7s | [Data](./data/github.com/Dhravya/notty/bWFpbgo/Cg) |
| ✅ | [**github.com/DigiPie/kaya-folio**](https://github.com/DigiPie/kaya-folio/tree/main/website) (`website`) | 10s | [Data](./data/github.com/DigiPie/kaya-folio/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/DineshRout779/FoodHunt**](https://github.com/DineshRout779/FoodHunt/tree/main/) | 6s | [Data](./data/github.com/DineshRout779/FoodHunt/bWFpbgo/Cg) |
| ✅ | [**github.com/DirectoryLister/DirectoryLister**](https://github.com/DirectoryLister/DirectoryLister/tree/master/) | 6s | [Data](./data/github.com/DirectoryLister/DirectoryLister/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/DominicFung/tshirt-editor**](https://github.com/DominicFung/tshirt-editor/tree/main/editor) (`editor`) | 5s | [Data](./data/github.com/DominicFung/tshirt-editor/bWFpbgo/ZWRpdG9yCg) |
| ✅ | [**github.com/Drakkarrr/D-prompt-AI**](https://github.com/Drakkarrr/D-prompt-AI/tree/main/) | 9s | [Data](./data/github.com/Drakkarrr/D-prompt-AI/bWFpbgo/Cg) |
| ✅ | [**github.com/Dun-sin/Whisper**](https://github.com/Dun-sin/Whisper/tree/main/) | 7s | [Data](./data/github.com/Dun-sin/Whisper/bWFpbgo/Cg) |
| ✅ | [**github.com/DustinRobison/StoryPointPoker**](https://github.com/DustinRobison/StoryPointPoker/tree/master/) | 9s | [Data](./data/github.com/DustinRobison/StoryPointPoker/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Dxmentorship/dxmentorship**](https://github.com/Dxmentorship/dxmentorship/tree/main/) | 46s | [Data](./data/github.com/Dxmentorship/dxmentorship/bWFpbgo/Cg) |
| ✅ | [**github.com/Dzoukr/Feliz.DaisyUI**](https://github.com/Dzoukr/Feliz.DaisyUI/tree/master/) | 9s | [Data](./data/github.com/Dzoukr/Feliz.DaisyUI/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/EddieHubCommunity/BioDrop**](https://github.com/EddieHubCommunity/BioDrop/tree/main/) | 9s | [Data](./data/github.com/EddieHubCommunity/BioDrop/bWFpbgo/Cg) |
| ✅ | [**github.com/EddieHubCommunity/EddieHubCommunity.github.io**](https://github.com/EddieHubCommunity/EddieHubCommunity.github.io/tree/main/) | 8s | [Data](./data/github.com/EddieHubCommunity/EddieHubCommunity.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/EddieHubCommunity/EddieHubLive**](https://github.com/EddieHubCommunity/EddieHubLive/tree/main/) | 6s | [Data](./data/github.com/EddieHubCommunity/EddieHubLive/bWFpbgo/Cg) |
| ✅ | [**github.com/EddieHubCommunity/RepoRater**](https://github.com/EddieHubCommunity/RepoRater/tree/prototype/) | 8s | [Data](./data/github.com/EddieHubCommunity/RepoRater/cHJvdG90eXBlCg/Cg) |
| ✅ | [**github.com/EddieHubCommunity/good-first-issue-finder**](https://github.com/EddieHubCommunity/good-first-issue-finder/tree/main/) | 10s | [Data](./data/github.com/EddieHubCommunity/good-first-issue-finder/bWFpbgo/Cg) |
| ✅ | [**github.com/EhPanda-Team/ehpanda-website**](https://github.com/EhPanda-Team/ehpanda-website/tree/main/) | 13s | [Data](./data/github.com/EhPanda-Team/ehpanda-website/bWFpbgo/Cg) |
| ✅ | [**github.com/Eished/jkforum_helper**](https://github.com/Eished/jkforum_helper/tree/main/) | 9s | [Data](./data/github.com/Eished/jkforum_helper/bWFpbgo/Cg) |
| ✅ | [**github.com/Elliop/Twitter**](https://github.com/Elliop/Twitter/tree/main/) | 6s | [Data](./data/github.com/Elliop/Twitter/bWFpbgo/Cg) |
| ✅ | [**github.com/Elliott-Chong/Astro-Personal-Portfolio**](https://github.com/Elliott-Chong/Astro-Personal-Portfolio/tree/main/) | 29s | [Data](./data/github.com/Elliott-Chong/Astro-Personal-Portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/ElonMusk2002/chat-huggingface**](https://github.com/ElonMusk2002/chat-huggingface/tree/main/) | 8s | [Data](./data/github.com/ElonMusk2002/chat-huggingface/bWFpbgo/Cg) |
| ✅ | [**github.com/Eltik/Anify**](https://github.com/Eltik/Anify/tree/main/anify-frontend) (`anify-frontend`) | 12s | [Data](./data/github.com/Eltik/Anify/bWFpbgo/YW5pZnktZnJvbnRlbmQK) |
| ✅ | [**github.com/EmaSuriano/astro-art-portfolio**](https://github.com/EmaSuriano/astro-art-portfolio/tree/main/) | 10s | [Data](./data/github.com/EmaSuriano/astro-art-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/EmaSuriano/astro-resume**](https://github.com/EmaSuriano/astro-resume/tree/main/) | 11s | [Data](./data/github.com/EmaSuriano/astro-resume/bWFpbgo/Cg) |
| ✅ | [**github.com/EntreCopos/BarzimV1**](https://github.com/EntreCopos/BarzimV1/tree/main/) | 7s | [Data](./data/github.com/EntreCopos/BarzimV1/bWFpbgo/Cg) |
| ✅ | [**github.com/Equal-UI/Equal**](https://github.com/Equal-UI/Equal/tree/master/) | 10s | [Data](./data/github.com/Equal-UI/Equal/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Equal-UI/Equal**](https://github.com/Equal-UI/Equal/tree/master/docs) (`docs`) | 10s | [Data](./data/github.com/Equal-UI/Equal/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/ErnaneJ/PomoTimer**](https://github.com/ErnaneJ/PomoTimer/tree/main/) | 9s | [Data](./data/github.com/ErnaneJ/PomoTimer/bWFpbgo/Cg) |
| ✅ | [**github.com/EvanBacon/expo-router-tailwind-demo**](https://github.com/EvanBacon/expo-router-tailwind-demo/tree/main/) | 21s | [Data](./data/github.com/EvanBacon/expo-router-tailwind-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/ExpressionEngine/ExpressionEngine-User-Guide**](https://github.com/ExpressionEngine/ExpressionEngine-User-Guide/tree/7.dev/) | 9s | [Data](./data/github.com/ExpressionEngine/ExpressionEngine-User-Guide/Ny5kZXYK/Cg) |
| ✅ | [**github.com/EyuCoder/chatgpt-pro**](https://github.com/EyuCoder/chatgpt-pro/tree/main/) | 7s | [Data](./data/github.com/EyuCoder/chatgpt-pro/bWFpbgo/Cg) |
| ✅ | [**github.com/FahimAnzamDip/vue-landing-page**](https://github.com/FahimAnzamDip/vue-landing-page/tree/main/) | 8s | [Data](./data/github.com/FahimAnzamDip/vue-landing-page/bWFpbgo/Cg) |
| ✅ | [**github.com/Fallenbagel/jellyseerr**](https://github.com/Fallenbagel/jellyseerr/tree/develop/) | 14s | [Data](./data/github.com/Fallenbagel/jellyseerr/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/Fibery-inc/fibery-web-extension**](https://github.com/Fibery-inc/fibery-web-extension/tree/master/) | 8s | [Data](./data/github.com/Fibery-inc/fibery-web-extension/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/FirmanKurniawan/Javascript-Projects**](https://github.com/FirmanKurniawan/Javascript-Projects/tree/main/luxspace) (`luxspace`) | 17s | [Data](./data/github.com/FirmanKurniawan/Javascript-Projects/bWFpbgo/bHV4c3BhY2UK) |
| ✅ | [**github.com/FirmanKurniawan/Javascript-Projects**](https://github.com/FirmanKurniawan/Javascript-Projects/tree/main/ngewibu) (`ngewibu`) | 18s | [Data](./data/github.com/FirmanKurniawan/Javascript-Projects/bWFpbgo/bmdld2lidQo) |
| ✅ | [**github.com/FirmanKurniawan/Javascript-Projects**](https://github.com/FirmanKurniawan/Javascript-Projects/tree/main/react-go-app%2Ffrontend) (`react-go-app/frontend`) | 17s | [Data](./data/github.com/FirmanKurniawan/Javascript-Projects/bWFpbgo/cmVhY3QtZ28tYXBwL2Zyb250ZW5kCg) |
| ❌ | [**github.com/Floe-dev/floe**](https://github.com/Floe-dev/floe/tree/main/apps%2Fapp) (`apps/app`) | *n/a* | [Data](./data/github.com/Floe-dev/floe/bWFpbgo/YXBwcy9hcHAK) |
| ✅ | [**github.com/Floe-dev/floe**](https://github.com/Floe-dev/floe/tree/main/apps%2Fweb) (`apps/web`) | 1m 3s | [Data](./data/github.com/Floe-dev/floe/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/Floe-dev/floe**](https://github.com/Floe-dev/floe/tree/main/packages%2Ftailwind) (`packages/tailwind`) | 55s | [Data](./data/github.com/Floe-dev/floe/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQK) |
| ✅ | [**github.com/Floe-dev/floe**](https://github.com/Floe-dev/floe/tree/main/packages%2Fui) (`packages/ui`) | 50s | [Data](./data/github.com/Floe-dev/floe/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/Flowinity/Flowinity**](https://github.com/Flowinity/Flowinity/tree/api-v4/frontend-v5) (`frontend-v5`) | 15s | [Data](./data/github.com/Flowinity/Flowinity/YXBpLXY0Cg/ZnJvbnRlbmQtdjUK) |
| ✅ | [**github.com/FormidableLabs/nuka-carousel**](https://github.com/FormidableLabs/nuka-carousel/tree/main/website) (`website`) | 55s | [Data](./data/github.com/FormidableLabs/nuka-carousel/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/FormidableLabs/react-live**](https://github.com/FormidableLabs/react-live/tree/master/packages%2Fdemo) (`packages/demo`) | 2m 19s | [Data](./data/github.com/FormidableLabs/react-live/bWFzdGVyCg/cGFja2FnZXMvZGVtbwo) |
| ✅ | [**github.com/FormidableLabs/react-live**](https://github.com/FormidableLabs/react-live/tree/master/website) (`website`) | 1m 8s | [Data](./data/github.com/FormidableLabs/react-live/bWFzdGVyCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/ForrestKnight/minimal-portfolio**](https://github.com/ForrestKnight/minimal-portfolio/tree/master/) | 6s | [Data](./data/github.com/ForrestKnight/minimal-portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/FrancescoXX/4c-site**](https://github.com/FrancescoXX/4c-site/tree/main/) | 10s | [Data](./data/github.com/FrancescoXX/4c-site/bWFpbgo/Cg) |
| ✅ | [**github.com/Front-End-Coders-Mauritius/frontendmu-astro**](https://github.com/Front-End-Coders-Mauritius/frontendmu-astro/tree/main/) | 8s | [Data](./data/github.com/Front-End-Coders-Mauritius/frontendmu-astro/bWFpbgo/Cg) |
| ✅ | [**github.com/FrontasticGmbH/components**](https://github.com/FrontasticGmbH/components/tree/master/) | 8s | [Data](./data/github.com/FrontasticGmbH/components/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Frontify/brand-sdk**](https://github.com/Frontify/brand-sdk/tree/main/) | 1m 5s | [Data](./data/github.com/Frontify/brand-sdk/bWFpbgo/Cg) |
| ✅ | [**github.com/Frontify/brand-sdk**](https://github.com/Frontify/brand-sdk/tree/main/packages%2Fguideline-blocks-settings) (`packages/guideline-blocks-settings`) | 47s | [Data](./data/github.com/Frontify/brand-sdk/bWFpbgo/cGFja2FnZXMvZ3VpZGVsaW5lLWJsb2Nrcy1zZXR0aW5ncwo) |
| ✅ | [**github.com/Frontify/fondue**](https://github.com/Frontify/fondue/tree/main/docs) (`docs`) | 1m 21s | [Data](./data/github.com/Frontify/fondue/bWFpbgo/ZG9jcwo) |
| ❌ | [**github.com/Frontify/fondue**](https://github.com/Frontify/fondue/tree/main/packages%2Fcomponents) (`packages/components`) | *n/a* | [Data](./data/github.com/Frontify/fondue/bWFpbgo/cGFja2FnZXMvY29tcG9uZW50cwo) |
| ✅ | [**github.com/Frontify/fondue**](https://github.com/Frontify/fondue/tree/main/packages%2Ffondue) (`packages/fondue`) | 41s | [Data](./data/github.com/Frontify/fondue/bWFpbgo/cGFja2FnZXMvZm9uZHVlCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/) | 1m 25s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/Cg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fanimation-curve-block) (`packages/animation-curve-block`) | 1m 32s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvYW5pbWF0aW9uLWN1cnZlLWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fasset-kit-block) (`packages/asset-kit-block`) | 1m 24s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvYXNzZXQta2l0LWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Faudio-block) (`packages/audio-block`) | 1m 22s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvYXVkaW8tYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fbrand-positioning-block) (`packages/brand-positioning-block`) | 1m 24s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvYnJhbmQtcG9zaXRpb25pbmctYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fcallout-block) (`packages/callout-block`) | 1m 23s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY2FsbG91dC1ibG9jawo) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fchecklist-block) (`packages/checklist-block`) | 1m 20s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY2hlY2tsaXN0LWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fcode-snippet-block) (`packages/code-snippet-block`) | 1m 20s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY29kZS1zbmlwcGV0LWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fcolor-block) (`packages/color-block`) | 2m 24s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY29sb3ItYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fcolor-kit-block) (`packages/color-kit-block`) | 1m 47s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY29sb3Ita2l0LWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fcolor-scale-block) (`packages/color-scale-block`) | 1m 27s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY29sb3Itc2NhbGUtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fcompare-slider-block) (`packages/compare-slider-block`) | 1m 27s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvY29tcGFyZS1zbGlkZXItYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fdivider-block) (`packages/divider-block`) | 1m 28s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvZGl2aWRlci1ibG9jawo) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fdos-donts-block) (`packages/dos-donts-block`) | 1m 31s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvZG9zLWRvbnRzLWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Ffigma-block) (`packages/figma-block`) | 1m 25s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvZmlnbWEtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fglyphs-block) (`packages/glyphs-block`) | 1m 45s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvZ2x5cGhzLWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fgradient-block) (`packages/gradient-block`) | 1m 56s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvZ3JhZGllbnQtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fimage-block) (`packages/image-block`) | 2m 5s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvaW1hZ2UtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fpersonal-note-block) (`packages/personal-note-block`) | 1m 55s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvcGVyc29uYWwtbm90ZS1ibG9jawo) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fquote-block) (`packages/quote-block`) | 1m 54s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvcXVvdGUtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fshared) (`packages/shared`) | 1m 19s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvc2hhcmVkCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fsketchfab-block) (`packages/sketchfab-block`) | 1m 23s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvc2tldGNoZmFiLWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fstorybook-block) (`packages/storybook-block`) | 1m 23s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvc3Rvcnlib29rLWJsb2NrCg) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Ftemplate-block) (`packages/template-block`) | 1m 23s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvdGVtcGxhdGUtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Ftext-block) (`packages/text-block`) | 1m 22s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvdGV4dC1ibG9jawo) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fthumbnail-grid-block) (`packages/thumbnail-grid-block`) | 1m 25s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvdGh1bWJuYWlsLWdyaWQtYmxvY2sK) |
| ✅ | [**github.com/Frontify/guideline-blocks**](https://github.com/Frontify/guideline-blocks/tree/main/packages%2Fui-pattern-block) (`packages/ui-pattern-block`) | 1m 22s | [Data](./data/github.com/Frontify/guideline-blocks/bWFpbgo/cGFja2FnZXMvdWktcGF0dGVybi1ibG9jawo) |
| ✅ | [**github.com/Fronvo/site**](https://github.com/Fronvo/site/tree/v2/) | 8s | [Data](./data/github.com/Fronvo/site/djIK/Cg) |
| ❌ | [**github.com/FuelLabs/fuel-explorer**](https://github.com/FuelLabs/fuel-explorer/tree/main/packages%2Fapp-explorer) (`packages/app-explorer`) | *n/a* | [Data](./data/github.com/FuelLabs/fuel-explorer/bWFpbgo/cGFja2FnZXMvYXBwLWV4cGxvcmVyCg) |
| ❌ | [**github.com/FuelLabs/fuel-explorer**](https://github.com/FuelLabs/fuel-explorer/tree/main/packages%2Fapp-portal) (`packages/app-portal`) | *n/a* | [Data](./data/github.com/FuelLabs/fuel-explorer/bWFpbgo/cGFja2FnZXMvYXBwLXBvcnRhbAo) |
| ❌ | [**github.com/FuelLabs/fuel-explorer**](https://github.com/FuelLabs/fuel-explorer/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/FuelLabs/fuel-explorer/bWFpbgo/cGFja2FnZXMvdWkK) |
| ❌ | [**github.com/G3root/aphrodite-ui**](https://github.com/G3root/aphrodite-ui/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/G3root/aphrodite-ui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/GDSC-CAU/GDSC-CAU.github.io**](https://github.com/GDSC-CAU/GDSC-CAU.github.io/tree/main/) | 25s | [Data](./data/github.com/GDSC-CAU/GDSC-CAU.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/GDSC-IIIT-Kalyani/rebase-01**](https://github.com/GDSC-IIIT-Kalyani/rebase-01/tree/main/) | 7s | [Data](./data/github.com/GDSC-IIIT-Kalyani/rebase-01/bWFpbgo/Cg) |
| ✅ | [**github.com/GSTJ/gabriel-taveira-portfolio**](https://github.com/GSTJ/gabriel-taveira-portfolio/tree/main/) | 8s | [Data](./data/github.com/GSTJ/gabriel-taveira-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/GStormx2/audiophile-ecommerce**](https://github.com/GStormx2/audiophile-ecommerce/tree/main/) | 10s | [Data](./data/github.com/GStormx2/audiophile-ecommerce/bWFpbgo/Cg) |
| ✅ | [**github.com/GalsenDev221/website**](https://github.com/GalsenDev221/website/tree/production/) | 10s | [Data](./data/github.com/GalsenDev221/website/cHJvZHVjdGlvbgo/Cg) |
| ✅ | [**github.com/Garvnanwani/garvnanwani.com**](https://github.com/Garvnanwani/garvnanwani.com/tree/next/) | 9s | [Data](./data/github.com/Garvnanwani/garvnanwani.com/bmV4dAo/Cg) |
| ✅ | [**github.com/Georgegriff/react-dnd-kit-tailwind-shadcn-ui**](https://github.com/Georgegriff/react-dnd-kit-tailwind-shadcn-ui/tree/main/) | 6s | [Data](./data/github.com/Georgegriff/react-dnd-kit-tailwind-shadcn-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/GerevAI/gerev**](https://github.com/GerevAI/gerev/tree/main/ui) (`ui`) | 5s | [Data](./data/github.com/GerevAI/gerev/bWFpbgo/dWkK) |
| ✅ | [**github.com/Germancitoz/mixin-feelings**](https://github.com/Germancitoz/mixin-feelings/tree/main/) | 32s | [Data](./data/github.com/Germancitoz/mixin-feelings/bWFpbgo/Cg) |
| ✅ | [**github.com/Girish21/remix-cloudflare-workers-template**](https://github.com/Girish21/remix-cloudflare-workers-template/tree/main/packages%2Fremix-app) (`packages/remix-app`) | 7s | [Data](./data/github.com/Girish21/remix-cloudflare-workers-template/bWFpbgo/cGFja2FnZXMvcmVtaXgtYXBwCg) |
| ✅ | [**github.com/Girish21/speed-metal-stack**](https://github.com/Girish21/speed-metal-stack/tree/main/) | 10s | [Data](./data/github.com/Girish21/speed-metal-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/Giskard-AI/giskard**](https://github.com/Giskard-AI/giskard/tree/main/) | 8s | [Data](./data/github.com/Giskard-AI/giskard/bWFpbgo/Cg) |
| ✅ | [**github.com/Giuliopime/ZenBreak**](https://github.com/Giuliopime/ZenBreak/tree/main/zenbreak.app) (`zenbreak.app`) | 8s | [Data](./data/github.com/Giuliopime/ZenBreak/bWFpbgo/emVuYnJlYWsuYXBwCg) |
| ✅ | [**github.com/GoogleCloudPlatform/generative-ai**](https://github.com/GoogleCloudPlatform/generative-ai/tree/main/conversation%2Fchat-app) (`conversation/chat-app`) | 16s | [Data](./data/github.com/GoogleCloudPlatform/generative-ai/bWFpbgo/Y29udmVyc2F0aW9uL2NoYXQtYXBwCg) |
| ✅ | [**github.com/GooseFX1/gfx-web-app**](https://github.com/GooseFX1/gfx-web-app/tree/dev/) | 2m 53s | [Data](./data/github.com/GooseFX1/gfx-web-app/ZGV2Cg/Cg) |
| ✅ | [**github.com/Gr33nW33n/nuxtship-template**](https://github.com/Gr33nW33n/nuxtship-template/tree/main/) | 7s | [Data](./data/github.com/Gr33nW33n/nuxtship-template/bWFpbgo/Cg) |
| ✅ | [**github.com/GunnWATT/watt**](https://github.com/GunnWATT/watt/tree/main/client) (`client`) | 11s | [Data](./data/github.com/GunnWATT/watt/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/Hack-Weekly/lavender-snake-blog**](https://github.com/Hack-Weekly/lavender-snake-blog/tree/main/) | 6s | [Data](./data/github.com/Hack-Weekly/lavender-snake-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/Hackbit/nko2019-wondermap**](https://github.com/Hackbit/nko2019-wondermap/tree/master/) | 10s | [Data](./data/github.com/Hackbit/nko2019-wondermap/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Hacksore/overlayed**](https://github.com/Hacksore/overlayed/tree/master/apps%2Fdesktop) (`apps/desktop`) | 48s | [Data](./data/github.com/Hacksore/overlayed/bWFzdGVyCg/YXBwcy9kZXNrdG9wCg) |
| ✅ | [**github.com/Hacksore/overlayed**](https://github.com/Hacksore/overlayed/tree/master/apps%2Fweb) (`apps/web`) | 1m 3s | [Data](./data/github.com/Hacksore/overlayed/bWFzdGVyCg/YXBwcy93ZWIK) |
| ✅ | [**github.com/Halleck45/captain-dys**](https://github.com/Halleck45/captain-dys/tree/master/) | 12s | [Data](./data/github.com/Halleck45/captain-dys/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Hamed-Hasan/Online-Booking-Management**](https://github.com/Hamed-Hasan/Online-Booking-Management/tree/main/) | 13s | [Data](./data/github.com/Hamed-Hasan/Online-Booking-Management/bWFpbgo/Cg) |
| ✅ | [**github.com/HamedBahram/next-ecomm**](https://github.com/HamedBahram/next-ecomm/tree/main/) | 7s | [Data](./data/github.com/HamedBahram/next-ecomm/bWFpbgo/Cg) |
| ✅ | [**github.com/Hasnayeen/goodwork**](https://github.com/Hasnayeen/goodwork/tree/main/) | 11s | [Data](./data/github.com/Hasnayeen/goodwork/bWFpbgo/Cg) |
| ✅ | [**github.com/Hasnayeen/invobook**](https://github.com/Hasnayeen/invobook/tree/main/) | 8s | [Data](./data/github.com/Hasnayeen/invobook/bWFpbgo/Cg) |
| ✅ | [**github.com/Havenstd06/Limg**](https://github.com/Havenstd06/Limg/tree/master/) | 10s | [Data](./data/github.com/Havenstd06/Limg/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/HazyResearch/meerkat**](https://github.com/HazyResearch/meerkat/tree/main/website) (`website`) | 8s | [Data](./data/github.com/HazyResearch/meerkat/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/HelloGitHub-Team/geese**](https://github.com/HelloGitHub-Team/geese/tree/main/) | 12s | [Data](./data/github.com/HelloGitHub-Team/geese/bWFpbgo/Cg) |
| ✅ | [**github.com/HohShenYien/insta-next**](https://github.com/HohShenYien/insta-next/tree/main/) | 9s | [Data](./data/github.com/HohShenYien/insta-next/bWFpbgo/Cg) |
| ✅ | [**github.com/Houfeng/noka**](https://github.com/Houfeng/noka/tree/master/packages%2Fnoka-tpl-app) (`packages/noka-tpl-app`) | 1m 13s | [Data](./data/github.com/Houfeng/noka/bWFzdGVyCg/cGFja2FnZXMvbm9rYS10cGwtYXBwCg) |
| ✅ | [**github.com/HugoBlox/hugo-blox-builder**](https://github.com/HugoBlox/hugo-blox-builder/tree/main/modules%2Fblox-tailwind) (`modules/blox-tailwind`) | 23s | [Data](./data/github.com/HugoBlox/hugo-blox-builder/bWFpbgo/bW9kdWxlcy9ibG94LXRhaWx3aW5kCg) |
| ✅ | [**github.com/IgorBayerl/react-vite-tailwind-typescript-firebase-auth-template**](https://github.com/IgorBayerl/react-vite-tailwind-typescript-firebase-auth-template/tree/main/) | 9s | [Data](./data/github.com/IgorBayerl/react-vite-tailwind-typescript-firebase-auth-template/bWFpbgo/Cg) |
| ✅ | [**github.com/IgorKowalczyk/igorkowalczyk.github.io**](https://github.com/IgorKowalczyk/igorkowalczyk.github.io/tree/master/) | 11s | [Data](./data/github.com/IgorKowalczyk/igorkowalczyk.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Infisical/infisical**](https://github.com/Infisical/infisical/tree/main/frontend) (`frontend`) | 56s | [Data](./data/github.com/Infisical/infisical/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/IntToDouble/winded**](https://github.com/IntToDouble/winded/tree/main/) | 22s | [Data](./data/github.com/IntToDouble/winded/bWFpbgo/Cg) |
| ✅ | [**github.com/InverseFinance/inverse-web**](https://github.com/InverseFinance/inverse-web/tree/main/) | 28s | [Data](./data/github.com/InverseFinance/inverse-web/bWFpbgo/Cg) |
| ❌ | [**github.com/Irev-Dev/cadhub**](https://github.com/Irev-Dev/cadhub/tree/main/docs) (`docs`) | *n/a* | [Data](./data/github.com/Irev-Dev/cadhub/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/IshaanAdarsh/ezmail**](https://github.com/IshaanAdarsh/ezmail/tree/main/) | 7s | [Data](./data/github.com/IshaanAdarsh/ezmail/bWFpbgo/Cg) |
| ✅ | [**github.com/IslemMedjahdi/whatsapp-v2-clone**](https://github.com/IslemMedjahdi/whatsapp-v2-clone/tree/main/) | 9s | [Data](./data/github.com/IslemMedjahdi/whatsapp-v2-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/ItJustWorksTM/EiffelVis**](https://github.com/ItJustWorksTM/EiffelVis/tree/master/frontend) (`frontend`) | 7s | [Data](./data/github.com/ItJustWorksTM/EiffelVis/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/Itsnotaka/isnt**](https://github.com/Itsnotaka/isnt/tree/master/) | 9s | [Data](./data/github.com/Itsnotaka/isnt/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/JDIZM/nuxt3-tailwind**](https://github.com/JDIZM/nuxt3-tailwind/tree/main/) | 10s | [Data](./data/github.com/JDIZM/nuxt3-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/JSConfCL/TechTon-landing**](https://github.com/JSConfCL/TechTon-landing/tree/main/) | 7s | [Data](./data/github.com/JSConfCL/TechTon-landing/bWFpbgo/Cg) |
| ✅ | [**github.com/JSLancerTeam/saasgear**](https://github.com/JSLancerTeam/saasgear/tree/master/app) (`app`) | 10s | [Data](./data/github.com/JSLancerTeam/saasgear/bWFzdGVyCg/YXBwCg) |
| ✅ | [**github.com/JWTC2200/legionbuilder**](https://github.com/JWTC2200/legionbuilder/tree/master/) | 9s | [Data](./data/github.com/JWTC2200/legionbuilder/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Jafarzar/my-personal-site**](https://github.com/Jafarzar/my-personal-site/tree/main/) | 10s | [Data](./data/github.com/Jafarzar/my-personal-site/bWFpbgo/Cg) |
| ✅ | [**github.com/Jagroop2001/AcmeRockets**](https://github.com/Jagroop2001/AcmeRockets/tree/master/) | 5s | [Data](./data/github.com/Jagroop2001/AcmeRockets/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/JakubGluszek/intentio**](https://github.com/JakubGluszek/intentio/tree/main/) | 5s | [Data](./data/github.com/JakubGluszek/intentio/bWFpbgo/Cg) |
| ✅ | [**github.com/JanFahrnholz/docker-nextjs-strapi-starter**](https://github.com/JanFahrnholz/docker-nextjs-strapi-starter/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/JanFahrnholz/docker-nextjs-strapi-starter/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/JarrodMalkovic/auction-website**](https://github.com/JarrodMalkovic/auction-website/tree/main/services%2Ffrontend) (`services/frontend`) | 17s | [Data](./data/github.com/JarrodMalkovic/auction-website/bWFpbgo/c2VydmljZXMvZnJvbnRlbmQK) |
| ✅ | [**github.com/JayeshVP24/fontalt**](https://github.com/JayeshVP24/fontalt/tree/main/) | 7s | [Data](./data/github.com/JayeshVP24/fontalt/bWFpbgo/Cg) |
| ✅ | [**github.com/JedediahXu/Jed-blog**](https://github.com/JedediahXu/Jed-blog/tree/main/) | 23s | [Data](./data/github.com/JedediahXu/Jed-blog/bWFpbgo/Cg) |
| ❌ | [**github.com/JensDll/tailwindcss-plugin-icons**](https://github.com/JensDll/tailwindcss-plugin-icons/tree/main/playground%2Fvue) (`playground/vue`) | *n/a* | [Data](./data/github.com/JensDll/tailwindcss-plugin-icons/bWFpbgo/cGxheWdyb3VuZC92dWUK) |
| ✅ | [**github.com/JetBrains/ij-perf-report-aggregator**](https://github.com/JetBrains/ij-perf-report-aggregator/tree/master/) | 15s | [Data](./data/github.com/JetBrains/ij-perf-report-aggregator/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/JichouP/Better-traQ**](https://github.com/JichouP/Better-traQ/tree/main/) | 7s | [Data](./data/github.com/JichouP/Better-traQ/bWFpbgo/Cg) |
| ✅ | [**github.com/Jimmylxue/snow-todolist**](https://github.com/Jimmylxue/snow-todolist/tree/master/packages%2Fweb) (`packages/web`) | 40s | [Data](./data/github.com/Jimmylxue/snow-todolist/bWFzdGVyCg/cGFja2FnZXMvd2ViCg) |
| ✅ | [**github.com/Jimmylxue/snowIndex**](https://github.com/Jimmylxue/snowIndex/tree/master/) | 9s | [Data](./data/github.com/Jimmylxue/snowIndex/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/JoaoCardoso00/Eco-Rota**](https://github.com/JoaoCardoso00/Eco-Rota/tree/master/) | 11s | [Data](./data/github.com/JoaoCardoso00/Eco-Rota/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/JoeyMckenzie/joeymckenzie.tech**](https://github.com/JoeyMckenzie/joeymckenzie.tech/tree/main/) | 10s | [Data](./data/github.com/JoeyMckenzie/joeymckenzie.tech/bWFpbgo/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/amazon-clone**](https://github.com/John-Weeks-Dev/amazon-clone/tree/master/) | 7s | [Data](./data/github.com/John-Weeks-Dev/amazon-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/ebay-clone**](https://github.com/John-Weeks-Dev/ebay-clone/tree/main/) | 8s | [Data](./data/github.com/John-Weeks-Dev/ebay-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/facebook-clone**](https://github.com/John-Weeks-Dev/facebook-clone/tree/master/) | 7s | [Data](./data/github.com/John-Weeks-Dev/facebook-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/gmail-clone**](https://github.com/John-Weeks-Dev/gmail-clone/tree/master/) | 10s | [Data](./data/github.com/John-Weeks-Dev/gmail-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/instagram-clone**](https://github.com/John-Weeks-Dev/instagram-clone/tree/master/) | 6s | [Data](./data/github.com/John-Weeks-Dev/instagram-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/linktree-clone**](https://github.com/John-Weeks-Dev/linktree-clone/tree/master/) | 6s | [Data](./data/github.com/John-Weeks-Dev/linktree-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/netflix-clone**](https://github.com/John-Weeks-Dev/netflix-clone/tree/master/) | 11s | [Data](./data/github.com/John-Weeks-Dev/netflix-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/spotify-clone**](https://github.com/John-Weeks-Dev/spotify-clone/tree/master/) | 11s | [Data](./data/github.com/John-Weeks-Dev/spotify-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/tiktok-clone**](https://github.com/John-Weeks-Dev/tiktok-clone/tree/master/) | 7s | [Data](./data/github.com/John-Weeks-Dev/tiktok-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/tiktok-clone-nextjs**](https://github.com/John-Weeks-Dev/tiktok-clone-nextjs/tree/main/) | 9s | [Data](./data/github.com/John-Weeks-Dev/tiktok-clone-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/whatsapp-clone**](https://github.com/John-Weeks-Dev/whatsapp-clone/tree/master/) | 6s | [Data](./data/github.com/John-Weeks-Dev/whatsapp-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/John-Weeks-Dev/youtube-clone**](https://github.com/John-Weeks-Dev/youtube-clone/tree/master/) | 9s | [Data](./data/github.com/John-Weeks-Dev/youtube-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/JohnBra/vite-web-extension**](https://github.com/JohnBra/vite-web-extension/tree/main/) | 8s | [Data](./data/github.com/JohnBra/vite-web-extension/bWFpbgo/Cg) |
| ✅ | [**github.com/JohnMwendwa/portfolio**](https://github.com/JohnMwendwa/portfolio/tree/main/) | 9s | [Data](./data/github.com/JohnMwendwa/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/Johnkat-Mj/agency-landing-page-Astrojs**](https://github.com/Johnkat-Mj/agency-landing-page-Astrojs/tree/main/) | 25s | [Data](./data/github.com/Johnkat-Mj/agency-landing-page-Astrojs/bWFpbgo/Cg) |
| ✅ | [**github.com/Johnkat-Mj/podcas-landing-page**](https://github.com/Johnkat-Mj/podcas-landing-page/tree/main/) | 15s | [Data](./data/github.com/Johnkat-Mj/podcas-landing-page/bWFpbgo/Cg) |
| ✅ | [**github.com/Joscriptt/portfolioo**](https://github.com/Joscriptt/portfolioo/tree/main/) | 7s | [Data](./data/github.com/Joscriptt/portfolioo/bWFpbgo/Cg) |
| ❌ | [**github.com/Juguetear/juguetear-web**](https://github.com/Juguetear/juguetear-web/tree/development/) | *n/a* | [Data](./data/github.com/Juguetear/juguetear-web/ZGV2ZWxvcG1lbnQK/Cg) |
| ✅ | [**github.com/K-H-Rayhan/nextjs-animated-slider**](https://github.com/K-H-Rayhan/nextjs-animated-slider/tree/main/) | 9s | [Data](./data/github.com/K-H-Rayhan/nextjs-animated-slider/bWFpbgo/Cg) |
| ✅ | [**github.com/KOBA789/itzmono-vite**](https://github.com/KOBA789/itzmono-vite/tree/main/) | 11s | [Data](./data/github.com/KOBA789/itzmono-vite/bWFpbgo/Cg) |
| ✅ | [**github.com/Kamona-WD/kwd-dashboard**](https://github.com/Kamona-WD/kwd-dashboard/tree/main/) | 10s | [Data](./data/github.com/Kamona-WD/kwd-dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/Kayke-Ti/Figma-UI**](https://github.com/Kayke-Ti/Figma-UI/tree/main/ui-figman-jam) (`ui-figman-jam`) | 5s | [Data](./data/github.com/Kayke-Ti/Figma-UI/bWFpbgo/dWktZmlnbWFuLWphbQo) |
| ✅ | [**github.com/KevinBatdorf/image-filters**](https://github.com/KevinBatdorf/image-filters/tree/main/) | 7s | [Data](./data/github.com/KevinBatdorf/image-filters/bWFpbgo/Cg) |
| ✅ | [**github.com/KeyaAkter/proxima-client**](https://github.com/KeyaAkter/proxima-client/tree/main/) | 5s | [Data](./data/github.com/KeyaAkter/proxima-client/bWFpbgo/Cg) |
| ❌ | [**github.com/Khanhtran47/Sora**](https://github.com/Khanhtran47/Sora/tree/master/) | *n/a* | [Data](./data/github.com/Khanhtran47/Sora/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/KinXpeng/react-admin-vite**](https://github.com/KinXpeng/react-admin-vite/tree/main/) | 6s | [Data](./data/github.com/KinXpeng/react-admin-vite/bWFpbgo/Cg) |
| ✅ | [**github.com/Kinfe123/md-jsonify**](https://github.com/Kinfe123/md-jsonify/tree/main/) | 7s | [Data](./data/github.com/Kinfe123/md-jsonify/bWFpbgo/Cg) |
| ✅ | [**github.com/Kirch2/righthisway**](https://github.com/Kirch2/righthisway/tree/main/landing-page) (`landing-page`) | 9s | [Data](./data/github.com/Kirch2/righthisway/bWFpbgo/bGFuZGluZy1wYWdlCg) |
| ❌ | [**github.com/Kiyozz/papyrus-compiler-app**](https://github.com/Kiyozz/papyrus-compiler-app/tree/master/) | *n/a* | [Data](./data/github.com/Kiyozz/papyrus-compiler-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Knogobert/ntn-boilerplate**](https://github.com/Knogobert/ntn-boilerplate/tree/master/) | 19s | [Data](./data/github.com/Knogobert/ntn-boilerplate/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/KonradSzwarc/devscard**](https://github.com/KonradSzwarc/devscard/tree/main/) | 25s | [Data](./data/github.com/KonradSzwarc/devscard/bWFpbgo/Cg) |
| ✅ | [**github.com/KonstantinosAng/google-clone**](https://github.com/KonstantinosAng/google-clone/tree/master/google) (`google`) | 10s | [Data](./data/github.com/KonstantinosAng/google-clone/bWFzdGVyCg/Z29vZ2xlCg) |
| ✅ | [**github.com/KreatorDev/KreatorDev.com**](https://github.com/KreatorDev/KreatorDev.com/tree/main/) | 7s | [Data](./data/github.com/KreatorDev/KreatorDev.com/bWFpbgo/Cg) |
| ✅ | [**github.com/KryptikApp/kryptikwebapp**](https://github.com/KryptikApp/kryptikwebapp/tree/main/) | 12s | [Data](./data/github.com/KryptikApp/kryptikwebapp/bWFpbgo/Cg) |
| ✅ | [**github.com/Kwenta/kwenta-state-log**](https://github.com/Kwenta/kwenta-state-log/tree/master/) | 7s | [Data](./data/github.com/Kwenta/kwenta-state-log/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Kypaku/vue-gpt-playground**](https://github.com/Kypaku/vue-gpt-playground/tree/master/) | 13s | [Data](./data/github.com/Kypaku/vue-gpt-playground/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/LTopx/Le-AI**](https://github.com/LTopx/Le-AI/tree/main/) | 23s | [Data](./data/github.com/LTopx/Le-AI/bWFpbgo/Cg) |
| ✅ | [**github.com/LanceMoe/openai-translator**](https://github.com/LanceMoe/openai-translator/tree/main/) | 6s | [Data](./data/github.com/LanceMoe/openai-translator/bWFpbgo/Cg) |
| ✅ | [**github.com/Laravel-AAA/Laptop-POS**](https://github.com/Laravel-AAA/Laptop-POS/tree/dev/) | 16s | [Data](./data/github.com/Laravel-AAA/Laptop-POS/ZGV2Cg/Cg) |
| ✅ | [**github.com/LarsEllefsen/WinMonopolet**](https://github.com/LarsEllefsen/WinMonopolet/tree/master/frontend) (`frontend`) | 9s | [Data](./data/github.com/LarsEllefsen/WinMonopolet/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/LeCollectionist/component-library**](https://github.com/LeCollectionist/component-library/tree/dev/) | 6s | [Data](./data/github.com/LeCollectionist/component-library/ZGV2Cg/Cg) |
| ✅ | [**github.com/LeeConnelly12/link-sharing-app**](https://github.com/LeeConnelly12/link-sharing-app/tree/main/) | 9s | [Data](./data/github.com/LeeConnelly12/link-sharing-app/bWFpbgo/Cg) |
| ❌ | [**github.com/LegacyTemplates/blazor-tailwind**](https://github.com/LegacyTemplates/blazor-tailwind/tree/main/MyApp.Client) (`MyApp.Client`) | *n/a* | [Data](./data/github.com/LegacyTemplates/blazor-tailwind/bWFpbgo/TXlBcHAuQ2xpZW50Cg) |
| ✅ | [**github.com/Lehoczky/vue-termynal**](https://github.com/Lehoczky/vue-termynal/tree/master/playground) (`playground`) | 9s | [Data](./data/github.com/Lehoczky/vue-termynal/bWFzdGVyCg/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/LeiShi1313/genshin-aritifact-analyzer**](https://github.com/LeiShi1313/genshin-aritifact-analyzer/tree/main/) | 21s | [Data](./data/github.com/LeiShi1313/genshin-aritifact-analyzer/bWFpbgo/Cg) |
| ✅ | [**github.com/Leonavas/sveltekit-fire**](https://github.com/Leonavas/sveltekit-fire/tree/main/) | 6s | [Data](./data/github.com/Leonavas/sveltekit-fire/bWFpbgo/Cg) |
| ✅ | [**github.com/Leopold-V/Reactirator**](https://github.com/Leopold-V/Reactirator/tree/main/) | 6s | [Data](./data/github.com/Leopold-V/Reactirator/bWFpbgo/Cg) |
| ✅ | [**github.com/Levminer/authme**](https://github.com/Levminer/authme/tree/dev/) | 8s | [Data](./data/github.com/Levminer/authme/ZGV2Cg/Cg) |
| ✅ | [**github.com/Levminer/authme**](https://github.com/Levminer/authme/tree/dev/website) (`website`) | 6s | [Data](./data/github.com/Levminer/authme/ZGV2Cg/d2Vic2l0ZQo) |
| ✅ | [**github.com/LiamThursfield/laravel-tvi**](https://github.com/LiamThursfield/laravel-tvi/tree/master/) | 11s | [Data](./data/github.com/LiamThursfield/laravel-tvi/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Linesmerrill/Deliveroo**](https://github.com/Linesmerrill/Deliveroo/tree/main/) | 9s | [Data](./data/github.com/Linesmerrill/Deliveroo/bWFpbgo/Cg) |
| ✅ | [**github.com/LiterateInk/Pawnote**](https://github.com/LiterateInk/Pawnote/tree/main/docs) (`docs`) | 24s | [Data](./data/github.com/LiterateInk/Pawnote/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/LiveDuo/destack**](https://github.com/LiveDuo/destack/tree/main/lib) (`lib`) | 10s | [Data](./data/github.com/LiveDuo/destack/bWFpbgo/bGliCg) |
| ✅ | [**github.com/LiveOverflow/securitycodeaudit**](https://github.com/LiveOverflow/securitycodeaudit/tree/main/) | 8s | [Data](./data/github.com/LiveOverflow/securitycodeaudit/bWFpbgo/Cg) |
| ✅ | [**github.com/Lizdev-05/awesome-estate**](https://github.com/Lizdev-05/awesome-estate/tree/development/) | 8s | [Data](./data/github.com/Lizdev-05/awesome-estate/ZGV2ZWxvcG1lbnQK/Cg) |
| ✅ | [**github.com/Log1x/filament-starter**](https://github.com/Log1x/filament-starter/tree/main/) | 10s | [Data](./data/github.com/Log1x/filament-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/Luizboaventura1/fast-editor**](https://github.com/Luizboaventura1/fast-editor/tree/main/) | 7s | [Data](./data/github.com/Luizboaventura1/fast-editor/bWFpbgo/Cg) |
| ✅ | [**github.com/Luzzotica/KadenaKode**](https://github.com/Luzzotica/KadenaKode/tree/main/) | 6s | [Data](./data/github.com/Luzzotica/KadenaKode/bWFpbgo/Cg) |
| ✅ | [**github.com/M0nicaVaz/classroom-platform**](https://github.com/M0nicaVaz/classroom-platform/tree/main/) | 9s | [Data](./data/github.com/M0nicaVaz/classroom-platform/bWFpbgo/Cg) |
| ✅ | [**github.com/MPEGGroup/FileFormatConformance**](https://github.com/MPEGGroup/FileFormatConformance/tree/main/conformance-search) (`conformance-search`) | 6s | [Data](./data/github.com/MPEGGroup/FileFormatConformance/bWFpbgo/Y29uZm9ybWFuY2Utc2VhcmNoCg) |
| ✅ | [**github.com/MTRNord/cetirizine**](https://github.com/MTRNord/cetirizine/tree/main/) | 7s | [Data](./data/github.com/MTRNord/cetirizine/bWFpbgo/Cg) |
| ✅ | [**github.com/Macrometacorp/docs**](https://github.com/Macrometacorp/docs/tree/main/) | 1m 23s | [Data](./data/github.com/Macrometacorp/docs/bWFpbgo/Cg) |
| ✅ | [**github.com/MadeBaruna/paimon-moe**](https://github.com/MadeBaruna/paimon-moe/tree/main/) | 49s | [Data](./data/github.com/MadeBaruna/paimon-moe/bWFpbgo/Cg) |
| ✅ | [**github.com/MaeWolff/astro-portfolio-template**](https://github.com/MaeWolff/astro-portfolio-template/tree/main/) | 25s | [Data](./data/github.com/MaeWolff/astro-portfolio-template/bWFpbgo/Cg) |
| ✅ | [**github.com/MaeWolff/dictionary-app**](https://github.com/MaeWolff/dictionary-app/tree/main/) | 8s | [Data](./data/github.com/MaeWolff/dictionary-app/bWFpbgo/Cg) |
| ✅ | [**github.com/MaggieAppleton/digital-gardeners**](https://github.com/MaggieAppleton/digital-gardeners/tree/main/) | 16s | [Data](./data/github.com/MaggieAppleton/digital-gardeners/bWFpbgo/Cg) |
| ❌ | [**github.com/MahdiTa97/turborepo-boilerplate**](https://github.com/MahdiTa97/turborepo-boilerplate/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/MahdiTa97/turborepo-boilerplate/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/MahdiTa97/turborepo-boilerplate**](https://github.com/MahdiTa97/turborepo-boilerplate/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 12s | [Data](./data/github.com/MahdiTa97/turborepo-boilerplate/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ❌ | [**github.com/MahdiTa97/turborepo-boilerplate**](https://github.com/MahdiTa97/turborepo-boilerplate/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/MahdiTa97/turborepo-boilerplate/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/MahmoudFettal/palette-generator**](https://github.com/MahmoudFettal/palette-generator/tree/master/) | 10s | [Data](./data/github.com/MahmoudFettal/palette-generator/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/MahmoudFettal/simple-project**](https://github.com/MahmoudFettal/simple-project/tree/master/) | 7s | [Data](./data/github.com/MahmoudFettal/simple-project/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/MahmoudFettal/wordle**](https://github.com/MahmoudFettal/wordle/tree/master/) | 5s | [Data](./data/github.com/MahmoudFettal/wordle/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/MajorLift/typescript-fullstack-monorepo-starter**](https://github.com/MajorLift/typescript-fullstack-monorepo-starter/tree/main/app) (`app`) | *n/a* | [Data](./data/github.com/MajorLift/typescript-fullstack-monorepo-starter/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/Manta-Network/manta-signer**](https://github.com/Manta-Network/manta-signer/tree/main/www) (`www`) | 12s | [Data](./data/github.com/Manta-Network/manta-signer/bWFpbgo/d3d3Cg) |
| ✅ | [**github.com/MarcoMicale/Minimalism**](https://github.com/MarcoMicale/Minimalism/tree/main/) | 9s | [Data](./data/github.com/MarcoMicale/Minimalism/bWFpbgo/Cg) |
| ✅ | [**github.com/MarconLP/loggl**](https://github.com/MarconLP/loggl/tree/main/apps%2Fexpo) (`apps/expo`) | 5m 35s | [Data](./data/github.com/MarconLP/loggl/bWFpbgo/YXBwcy9leHBvCg) |
| ❌ | [**github.com/MarconLP/loggl**](https://github.com/MarconLP/loggl/tree/main/apps%2Fnextjs) (`apps/nextjs`) | *n/a* | [Data](./data/github.com/MarconLP/loggl/bWFpbgo/YXBwcy9uZXh0anMK) |
| ✅ | [**github.com/Marcosfitzsimons/multi-step-form**](https://github.com/Marcosfitzsimons/multi-step-form/tree/master/) | 9s | [Data](./data/github.com/Marcosfitzsimons/multi-step-form/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/MarouaneBenbetka/ESI-Calendar**](https://github.com/MarouaneBenbetka/ESI-Calendar/tree/main/) | 7s | [Data](./data/github.com/MarouaneBenbetka/ESI-Calendar/bWFpbgo/Cg) |
| ✅ | [**github.com/MarouaneBenbetka/Real-Estate-Website**](https://github.com/MarouaneBenbetka/Real-Estate-Website/tree/main/) | 7s | [Data](./data/github.com/MarouaneBenbetka/Real-Estate-Website/bWFpbgo/Cg) |
| ✅ | [**github.com/MarsX-dev/floatui**](https://github.com/MarsX-dev/floatui/tree/main/) | 19s | [Data](./data/github.com/MarsX-dev/floatui/bWFpbgo/Cg) |
| ✅ | [**github.com/MartinP460/onsplash**](https://github.com/MartinP460/onsplash/tree/main/) | 6s | [Data](./data/github.com/MartinP460/onsplash/bWFpbgo/Cg) |
| ✅ | [**github.com/MatthewStanciu/twitter-og**](https://github.com/MatthewStanciu/twitter-og/tree/main/) | 7s | [Data](./data/github.com/MatthewStanciu/twitter-og/bWFpbgo/Cg) |
| ✅ | [**github.com/Mazzzoni/memory-cards**](https://github.com/Mazzzoni/memory-cards/tree/main/workspaces%2Fclient) (`workspaces/client`) | 8s | [Data](./data/github.com/Mazzzoni/memory-cards/bWFpbgo/d29ya3NwYWNlcy9jbGllbnQK) |
| ✅ | [**github.com/McNerdius/TailBlazor-Templates**](https://github.com/McNerdius/TailBlazor-Templates/tree/main/TailBlazorWasm) (`TailBlazorWasm`) | 9s | [Data](./data/github.com/McNerdius/TailBlazor-Templates/bWFpbgo/VGFpbEJsYXpvcldhc20K) |
| ✅ | [**github.com/Meldiron/almost-casino**](https://github.com/Meldiron/almost-casino/tree/master/) | 7s | [Data](./data/github.com/Meldiron/almost-casino/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Meldiron/appwrite-cms**](https://github.com/Meldiron/appwrite-cms/tree/master/) | 7s | [Data](./data/github.com/Meldiron/appwrite-cms/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/MelvinAguilar/bookmark-landing-page**](https://github.com/MelvinAguilar/bookmark-landing-page/tree/main/) | 9s | [Data](./data/github.com/MelvinAguilar/bookmark-landing-page/bWFpbgo/Cg) |
| ✅ | [**github.com/MelvinAguilar/intro-section-with-dropdown-navigation**](https://github.com/MelvinAguilar/intro-section-with-dropdown-navigation/tree/main/) | 9s | [Data](./data/github.com/MelvinAguilar/intro-section-with-dropdown-navigation/bWFpbgo/Cg) |
| ✅ | [**github.com/MercyCloudTeam/TunnelBroker**](https://github.com/MercyCloudTeam/TunnelBroker/tree/main/) | 11s | [Data](./data/github.com/MercyCloudTeam/TunnelBroker/bWFpbgo/Cg) |
| ✅ | [**github.com/Microwawe/mamba-ui**](https://github.com/Microwawe/mamba-ui/tree/master/) | 12s | [Data](./data/github.com/Microwawe/mamba-ui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Milkdown/milkdown**](https://github.com/Milkdown/milkdown/tree/main/packages%2Ftheme-nord) (`packages/theme-nord`) | 1m 6s | [Data](./data/github.com/Milkdown/milkdown/bWFpbgo/cGFja2FnZXMvdGhlbWUtbm9yZAo) |
| ✅ | [**github.com/Mintbase/mintbase-ui**](https://github.com/Mintbase/mintbase-ui/tree/main/) | 9s | [Data](./data/github.com/Mintbase/mintbase-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/Mintplex-Labs/anything-llm**](https://github.com/Mintplex-Labs/anything-llm/tree/master/frontend) (`frontend`) | 9s | [Data](./data/github.com/Mintplex-Labs/anything-llm/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/MiqeWazowhiskey/real-chat-app**](https://github.com/MiqeWazowhiskey/real-chat-app/tree/main/) | 6s | [Data](./data/github.com/MiqeWazowhiskey/real-chat-app/bWFpbgo/Cg) |
| ✅ | [**github.com/MirageNetwork/MirageClient**](https://github.com/MirageNetwork/MirageClient/tree/main/cmd%2Ftsconnect) (`cmd/tsconnect`) | 9s | [Data](./data/github.com/MirageNetwork/MirageClient/bWFpbgo/Y21kL3RzY29ubmVjdAo) |
| ✅ | [**github.com/MiryangJung/Build-Own-blog-With-Next.js**](https://github.com/MiryangJung/Build-Own-blog-With-Next.js/tree/main/) | 10s | [Data](./data/github.com/MiryangJung/Build-Own-blog-With-Next.js/bWFpbgo/Cg) |
| ✅ | [**github.com/MiryangJung/miryang.dev**](https://github.com/MiryangJung/miryang.dev/tree/main/) | 12s | [Data](./data/github.com/MiryangJung/miryang.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/MitchellSparrow/portfolioWebsite**](https://github.com/MitchellSparrow/portfolioWebsite/tree/main/) | 9s | [Data](./data/github.com/MitchellSparrow/portfolioWebsite/bWFpbgo/Cg) |
| ✅ | [**github.com/Mixtape-Sessions/Frontiers-in-DID**](https://github.com/Mixtape-Sessions/Frontiers-in-DID/tree/main/docs) (`docs`) | 9s | [Data](./data/github.com/Mixtape-Sessions/Frontiers-in-DID/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/Mobilecn-UI/nativecn-ui**](https://github.com/Mobilecn-UI/nativecn-ui/tree/main/) | 21s | [Data](./data/github.com/Mobilecn-UI/nativecn-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/MohmmedAshraf/laravel-translations**](https://github.com/MohmmedAshraf/laravel-translations/tree/main/) | 9s | [Data](./data/github.com/MohmmedAshraf/laravel-translations/bWFpbgo/Cg) |
| ✅ | [**github.com/Monte9/nextjs-tailwindcss-chatgpt-clone**](https://github.com/Monte9/nextjs-tailwindcss-chatgpt-clone/tree/main/) | 8s | [Data](./data/github.com/Monte9/nextjs-tailwindcss-chatgpt-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/MoofyWoofy/Bob-blog**](https://github.com/MoofyWoofy/Bob-blog/tree/main/) | 22s | [Data](./data/github.com/MoofyWoofy/Bob-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/MorgueMorg/Multifunctional-React-Dashboard**](https://github.com/MorgueMorg/Multifunctional-React-Dashboard/tree/main/) | 7s | [Data](./data/github.com/MorgueMorg/Multifunctional-React-Dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/MostafaEllethy/valorant-clone**](https://github.com/MostafaEllethy/valorant-clone/tree/main/) | 5s | [Data](./data/github.com/MostafaEllethy/valorant-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/MrPunyapal/livewire-crud**](https://github.com/MrPunyapal/livewire-crud/tree/main/) | 11s | [Data](./data/github.com/MrPunyapal/livewire-crud/bWFpbgo/Cg) |
| ✅ | [**github.com/Mridul2820/git-o-get**](https://github.com/Mridul2820/git-o-get/tree/main/) | 7s | [Data](./data/github.com/Mridul2820/git-o-get/bWFpbgo/Cg) |
| ✅ | [**github.com/MrlolDev/turing-ai**](https://github.com/MrlolDev/turing-ai/tree/app/) | 6s | [Data](./data/github.com/MrlolDev/turing-ai/YXBwCg/Cg) |
| ✅ | [**github.com/Mutesa-Cedric/shoppex**](https://github.com/Mutesa-Cedric/shoppex/tree/main/) | 6s | [Data](./data/github.com/Mutesa-Cedric/shoppex/bWFpbgo/Cg) |
| ✅ | [**github.com/MystPi/scratch-explorer**](https://github.com/MystPi/scratch-explorer/tree/main/) | 7s | [Data](./data/github.com/MystPi/scratch-explorer/bWFpbgo/Cg) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/apps%2Fcore) (`apps/core`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/YXBwcy9jb3JlCg) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/apps%2Fexplorer) (`apps/explorer`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/YXBwcy9leHBsb3Jlcgo) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/apps%2Fui) (`apps/ui`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/YXBwcy91aQo) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/apps%2Fwallet) (`apps/wallet`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/YXBwcy93YWxsZXQK) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/dapps%2Fkiosk) (`dapps/kiosk`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/ZGFwcHMva2lvc2sK) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/dapps%2Fmultisig-toolkit) (`dapps/multisig-toolkit`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/ZGFwcHMvbXVsdGlzaWctdG9vbGtpdAo) |
| ❌ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/dapps%2Fsponsored-transactions) (`dapps/sponsored-transactions`) | *n/a* | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/ZGFwcHMvc3BvbnNvcmVkLXRyYW5zYWN0aW9ucwo) |
| ✅ | [**github.com/MystenLabs/sui**](https://github.com/MystenLabs/sui/tree/main/docs%2Fsite) (`docs/site`) | 14s | [Data](./data/github.com/MystenLabs/sui/bWFpbgo/ZG9jcy9zaXRlCg) |
| ✅ | [**github.com/N00nDay/stwui**](https://github.com/N00nDay/stwui/tree/main/) | 27s | [Data](./data/github.com/N00nDay/stwui/bWFpbgo/Cg) |
| ✅ | [**github.com/N3iV/react-ts-tailwind-vitest-boilerplate**](https://github.com/N3iV/react-ts-tailwind-vitest-boilerplate/tree/main/) | 8s | [Data](./data/github.com/N3iV/react-ts-tailwind-vitest-boilerplate/bWFpbgo/Cg) |
| ✅ | [**github.com/NIAEFEUP/nitsig**](https://github.com/NIAEFEUP/nitsig/tree/develop/popup) (`popup`) | 10s | [Data](./data/github.com/NIAEFEUP/nitsig/ZGV2ZWxvcAo/cG9wdXAK) |
| ✅ | [**github.com/NangoHQ/nango**](https://github.com/NangoHQ/nango/tree/master/packages%2Fwebapp) (`packages/webapp`) | 8s | [Data](./data/github.com/NangoHQ/nango/bWFzdGVyCg/cGFja2FnZXMvd2ViYXBwCg) |
| ✅ | [**github.com/Narsil/hf-chat**](https://github.com/Narsil/hf-chat/tree/main/) | 7s | [Data](./data/github.com/Narsil/hf-chat/bWFpbgo/Cg) |
| ✅ | [**github.com/NathanWalker/ns-ultimate-tab-setup**](https://github.com/NathanWalker/ns-ultimate-tab-setup/tree/main/) | 6s | [Data](./data/github.com/NathanWalker/ns-ultimate-tab-setup/bWFpbgo/Cg) |
| ✅ | [**github.com/NativeScript/tailwind**](https://github.com/NativeScript/tailwind/tree/main/demo) (`demo`) | 8s | [Data](./data/github.com/NativeScript/tailwind/bWFpbgo/ZGVtbwo) |
| ✅ | [**github.com/NavigateUI/NavigateUI**](https://github.com/NavigateUI/NavigateUI/tree/development/) | 7s | [Data](./data/github.com/NavigateUI/NavigateUI/ZGV2ZWxvcG1lbnQK/Cg) |
| ✅ | [**github.com/NdekoCode/spotify-app**](https://github.com/NdekoCode/spotify-app/tree/main/) | 7s | [Data](./data/github.com/NdekoCode/spotify-app/bWFpbgo/Cg) |
| ✅ | [**github.com/NetCoreTemplates/vue-ssg**](https://github.com/NetCoreTemplates/vue-ssg/tree/main/ui) (`ui`) | 8s | [Data](./data/github.com/NetCoreTemplates/vue-ssg/bWFpbgo/dWkK) |
| ✅ | [**github.com/NetCoreTemplates/vue-vite**](https://github.com/NetCoreTemplates/vue-vite/tree/main/ui) (`ui`) | 8s | [Data](./data/github.com/NetCoreTemplates/vue-vite/bWFpbgo/dWkK) |
| ✅ | [**github.com/NextJSTemplates/startup-nextjs**](https://github.com/NextJSTemplates/startup-nextjs/tree/main/) | 9s | [Data](./data/github.com/NextJSTemplates/startup-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/NiFTyRent/nft-rental**](https://github.com/NiFTyRent/nft-rental/tree/master/demo_nft_frontend) (`demo_nft_frontend`) | 10s | [Data](./data/github.com/NiFTyRent/nft-rental/bWFzdGVyCg/ZGVtb19uZnRfZnJvbnRlbmQK) |
| ✅ | [**github.com/Njong392/Abbreve**](https://github.com/Njong392/Abbreve/tree/main/) | 6s | [Data](./data/github.com/Njong392/Abbreve/bWFpbgo/Cg) |
| ✅ | [**github.com/NoQuarterTeam/element**](https://github.com/NoQuarterTeam/element/tree/main/apps%2Fapp) (`apps/app`) | 58s | [Data](./data/github.com/NoQuarterTeam/element/bWFpbgo/YXBwcy9hcHAK) |
| ❌ | [**github.com/NoQuarterTeam/element**](https://github.com/NoQuarterTeam/element/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/NoQuarterTeam/element/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/Noor-Khan/vuechatgpt**](https://github.com/Noor-Khan/vuechatgpt/tree/main/) | 8s | [Data](./data/github.com/Noor-Khan/vuechatgpt/bWFpbgo/Cg) |
| ✅ | [**github.com/NorfolkDev/norfolkdevelopers-website**](https://github.com/NorfolkDev/norfolkdevelopers-website/tree/master/) | 10s | [Data](./data/github.com/NorfolkDev/norfolkdevelopers-website/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Nrosa01/pmd-quiz-online**](https://github.com/Nrosa01/pmd-quiz-online/tree/main/) | 8s | [Data](./data/github.com/Nrosa01/pmd-quiz-online/bWFpbgo/Cg) |
| ✅ | [**github.com/Nusab19/Toph-Leaderboard**](https://github.com/Nusab19/Toph-Leaderboard/tree/main/) | 5s | [Data](./data/github.com/Nusab19/Toph-Leaderboard/bWFpbgo/Cg) |
| ✅ | [**github.com/Nutlope/next-blog**](https://github.com/Nutlope/next-blog/tree/main/) | 9s | [Data](./data/github.com/Nutlope/next-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/Nutlope/notesGPT**](https://github.com/Nutlope/notesGPT/tree/main/) | 9s | [Data](./data/github.com/Nutlope/notesGPT/bWFpbgo/Cg) |
| ✅ | [**github.com/Nutlope/roomGPT**](https://github.com/Nutlope/roomGPT/tree/main/) | 10s | [Data](./data/github.com/Nutlope/roomGPT/bWFpbgo/Cg) |
| ✅ | [**github.com/OHIF/Viewers**](https://github.com/OHIF/Viewers/tree/master/platform%2Fapp) (`platform/app`) | 11s | [Data](./data/github.com/OHIF/Viewers/bWFzdGVyCg/cGxhdGZvcm0vYXBwCg) |
| ✅ | [**github.com/OHIF/Viewers**](https://github.com/OHIF/Viewers/tree/master/platform%2Fui) (`platform/ui`) | 13s | [Data](./data/github.com/OHIF/Viewers/bWFzdGVyCg/cGxhdGZvcm0vdWkK) |
| ✅ | [**github.com/OMikkel/tailwind-datepicker-react**](https://github.com/OMikkel/tailwind-datepicker-react/tree/master/demo-app) (`demo-app`) | 36s | [Data](./data/github.com/OMikkel/tailwind-datepicker-react/bWFzdGVyCg/ZGVtby1hcHAK) |
| ✅ | [**github.com/OSSPhilippines/nuxtwind-daisy**](https://github.com/OSSPhilippines/nuxtwind-daisy/tree/main/) | 1m 11s | [Data](./data/github.com/OSSPhilippines/nuxtwind-daisy/bWFpbgo/Cg) |
| ❌ | [**github.com/OdatNurd/devember-2022**](https://github.com/OdatNurd/devember-2022/tree/master/) | *n/a* | [Data](./data/github.com/OdatNurd/devember-2022/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/OpenBB-finance/OpenBBTerminal**](https://github.com/OpenBB-finance/OpenBBTerminal/tree/develop/frontend-components%2Fplotly) (`frontend-components/plotly`) | 23s | [Data](./data/github.com/OpenBB-finance/OpenBBTerminal/ZGV2ZWxvcAo/ZnJvbnRlbmQtY29tcG9uZW50cy9wbG90bHkK) |
| ✅ | [**github.com/OpenBB-finance/OpenBBTerminal**](https://github.com/OpenBB-finance/OpenBBTerminal/tree/develop/frontend-components%2Ftables) (`frontend-components/tables`) | 21s | [Data](./data/github.com/OpenBB-finance/OpenBBTerminal/ZGV2ZWxvcAo/ZnJvbnRlbmQtY29tcG9uZW50cy90YWJsZXMK) |
| ✅ | [**github.com/OpenBB-finance/OpenBBTerminal**](https://github.com/OpenBB-finance/OpenBBTerminal/tree/develop/website) (`website`) | 20s | [Data](./data/github.com/OpenBB-finance/OpenBBTerminal/ZGV2ZWxvcAo/d2Vic2l0ZQo) |
| ❌ | [**github.com/OpenBeta/open-tacos**](https://github.com/OpenBeta/open-tacos/tree/develop/) | *n/a* | [Data](./data/github.com/OpenBeta/open-tacos/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/OpenQDev/OpenQ-Frontend**](https://github.com/OpenQDev/OpenQ-Frontend/tree/staging/) | 11s | [Data](./data/github.com/OpenQDev/OpenQ-Frontend/c3RhZ2luZwo/Cg) |
| ✅ | [**github.com/OpenZeppelin/accesscontrol-explorer**](https://github.com/OpenZeppelin/accesscontrol-explorer/tree/master/) | 9s | [Data](./data/github.com/OpenZeppelin/accesscontrol-explorer/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Osalumense/mld**](https://github.com/Osalumense/mld/tree/main/) | 5s | [Data](./data/github.com/Osalumense/mld/bWFpbgo/Cg) |
| ✅ | [**github.com/OussamaBOUIZ/Transcendence**](https://github.com/OussamaBOUIZ/Transcendence/tree/main/app%2Fclient) (`app/client`) | 11s | [Data](./data/github.com/OussamaBOUIZ/Transcendence/bWFpbgo/YXBwL2NsaWVudAo) |
| ✅ | [**github.com/PKM-er/Pkmer-Obsidian**](https://github.com/PKM-er/Pkmer-Obsidian/tree/main/) | 7s | [Data](./data/github.com/PKM-er/Pkmer-Obsidian/bWFpbgo/Cg) |
| ✅ | [**github.com/PROxZIMA/proxzima.github.io**](https://github.com/PROxZIMA/proxzima.github.io/tree/master/) | 9s | [Data](./data/github.com/PROxZIMA/proxzima.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ParisNeo/Gpt4All-webui**](https://github.com/ParisNeo/Gpt4All-webui/tree/main/web) (`web`) | 7s | [Data](./data/github.com/ParisNeo/Gpt4All-webui/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/ParisNeo/lollms-webui**](https://github.com/ParisNeo/lollms-webui/tree/main/web) (`web`) | 9s | [Data](./data/github.com/ParisNeo/lollms-webui/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/Peacexoom/AnimeHub**](https://github.com/Peacexoom/AnimeHub/tree/main/FrontEnd) (`FrontEnd`) | 8s | [Data](./data/github.com/Peacexoom/AnimeHub/bWFpbgo/RnJvbnRFbmQK) |
| ✅ | [**github.com/PeerRich/ossacc**](https://github.com/PeerRich/ossacc/tree/main/) | 6s | [Data](./data/github.com/PeerRich/ossacc/bWFpbgo/Cg) |
| ✅ | [**github.com/Phixyn/react-todo-app**](https://github.com/Phixyn/react-todo-app/tree/master/) | 1m 41s | [Data](./data/github.com/Phixyn/react-todo-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/PikaOS-Linux/pikaos-site**](https://github.com/PikaOS-Linux/pikaos-site/tree/main/) | 7s | [Data](./data/github.com/PikaOS-Linux/pikaos-site/bWFpbgo/Cg) |
| ✅ | [**github.com/Pingid/lectures.london**](https://github.com/Pingid/lectures.london/tree/main/%40client) (`@client`) | 31s | [Data](./data/github.com/Pingid/lectures.london/bWFpbgo/QGNsaWVudAo) |
| ✅ | [**github.com/PipedreamHQ/pipedream**](https://github.com/PipedreamHQ/pipedream/tree/master/docs) (`docs`) | 25s | [Data](./data/github.com/PipedreamHQ/pipedream/bWFzdGVyCg/ZG9jcwo) |
| ❌ | [**github.com/PipedreamHQ/pipedream**](https://github.com/PipedreamHQ/pipedream/tree/master/docs-v2) (`docs-v2`) | *n/a* | [Data](./data/github.com/PipedreamHQ/pipedream/bWFzdGVyCg/ZG9jcy12Mgo) |
| ✅ | [**github.com/Pitayan/gatsby-theme-pitayan**](https://github.com/Pitayan/gatsby-theme-pitayan/tree/master/packages%2Fgatsby-theme-pitayan) (`packages/gatsby-theme-pitayan`) | 6s | [Data](./data/github.com/Pitayan/gatsby-theme-pitayan/bWFzdGVyCg/cGFja2FnZXMvZ2F0c2J5LXRoZW1lLXBpdGF5YW4K) |
| ✅ | [**github.com/Pitayan/gatsby-theme-pitayan**](https://github.com/Pitayan/gatsby-theme-pitayan/tree/master/packages%2Fwww) (`packages/www`) | 1m 41s | [Data](./data/github.com/Pitayan/gatsby-theme-pitayan/bWFzdGVyCg/cGFja2FnZXMvd3d3Cg) |
| ❌ | [**github.com/PiyushKalyanpy/GyanaGuru**](https://github.com/PiyushKalyanpy/GyanaGuru/tree/main/) | *n/a* | [Data](./data/github.com/PiyushKalyanpy/GyanaGuru/bWFpbgo/Cg) |
| ✅ | [**github.com/PiyushKalyanpy/UPI-QR-Code-Generator**](https://github.com/PiyushKalyanpy/UPI-QR-Code-Generator/tree/main/) | 5s | [Data](./data/github.com/PiyushKalyanpy/UPI-QR-Code-Generator/bWFpbgo/Cg) |
| ✅ | [**github.com/Pjha72/AcademixTracker**](https://github.com/Pjha72/AcademixTracker/tree/main/client) (`client`) | 9s | [Data](./data/github.com/Pjha72/AcademixTracker/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/PostHog/posthog.com**](https://github.com/PostHog/posthog.com/tree/master/) | 1m 52s | [Data](./data/github.com/PostHog/posthog.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Power-Components/livewire-powergrid**](https://github.com/Power-Components/livewire-powergrid/tree/5.x/) | 13s | [Data](./data/github.com/Power-Components/livewire-powergrid/NS54Cg/Cg) |
| ✅ | [**github.com/Princesseuh/erika.florist**](https://github.com/Princesseuh/erika.florist/tree/main/) | 33s | [Data](./data/github.com/Princesseuh/erika.florist/bWFpbgo/Cg) |
| ✅ | [**github.com/Project-Sloth/ps-adminmenu**](https://github.com/Project-Sloth/ps-adminmenu/tree/main/ui) (`ui`) | 7s | [Data](./data/github.com/Project-Sloth/ps-adminmenu/bWFpbgo/dWkK) |
| ✅ | [**github.com/PythonBulawayo/ChitChat**](https://github.com/PythonBulawayo/ChitChat/tree/main/frontend) (`frontend`) | 6s | [Data](./data/github.com/PythonBulawayo/ChitChat/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/Queer-Lexikon/regenbogenkarte**](https://github.com/Queer-Lexikon/regenbogenkarte/tree/main/) | 8s | [Data](./data/github.com/Queer-Lexikon/regenbogenkarte/bWFpbgo/Cg) |
| ❌ | [**github.com/RAAbbott/polaris-components**](https://github.com/RAAbbott/polaris-components/tree/main/) | *n/a* | [Data](./data/github.com/RAAbbott/polaris-components/bWFpbgo/Cg) |
| ✅ | [**github.com/RSurya99/nefa**](https://github.com/RSurya99/nefa/tree/main/) | 9s | [Data](./data/github.com/RSurya99/nefa/bWFpbgo/Cg) |
| ✅ | [**github.com/RabbyHub/Rabby**](https://github.com/RabbyHub/Rabby/tree/develop/) | 21s | [Data](./data/github.com/RabbyHub/Rabby/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/Railly/website**](https://github.com/Railly/website/tree/main/) | 8s | [Data](./data/github.com/Railly/website/bWFpbgo/Cg) |
| ✅ | [**github.com/Rajacharles/React-JS-Product-Landing-Page-Animate-On-Scroll**](https://github.com/Rajacharles/React-JS-Product-Landing-Page-Animate-On-Scroll/tree/master/) | 8s | [Data](./data/github.com/Rajacharles/React-JS-Product-Landing-Page-Animate-On-Scroll/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/RakibHassan01/imdb_nextJS**](https://github.com/RakibHassan01/imdb_nextJS/tree/main/) | 8s | [Data](./data/github.com/RakibHassan01/imdb_nextJS/bWFpbgo/Cg) |
| ✅ | [**github.com/RapidAPI/DevRel-Examples-External**](https://github.com/RapidAPI/DevRel-Examples-External/tree/main/grammar-checker-app) (`grammar-checker-app`) | 11s | [Data](./data/github.com/RapidAPI/DevRel-Examples-External/bWFpbgo/Z3JhbW1hci1jaGVja2VyLWFwcAo) |
| ✅ | [**github.com/RapidAPI/DevRel-Examples-External**](https://github.com/RapidAPI/DevRel-Examples-External/tree/main/language-detection-app) (`language-detection-app`) | 11s | [Data](./data/github.com/RapidAPI/DevRel-Examples-External/bWFpbgo/bGFuZ3VhZ2UtZGV0ZWN0aW9uLWFwcAo) |
| ✅ | [**github.com/RaunoT/plex-rewind**](https://github.com/RaunoT/plex-rewind/tree/develop/) | 7s | [Data](./data/github.com/RaunoT/plex-rewind/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/ReCoded-Org/student-store-capstone-project**](https://github.com/ReCoded-Org/student-store-capstone-project/tree/develop/) | 10s | [Data](./data/github.com/ReCoded-Org/student-store-capstone-project/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/RealKai42/qwerty-learner**](https://github.com/RealKai42/qwerty-learner/tree/master/) | 25s | [Data](./data/github.com/RealKai42/qwerty-learner/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Reayhs/react-tailwind-portfolio**](https://github.com/Reayhs/react-tailwind-portfolio/tree/main/) | 8s | [Data](./data/github.com/Reayhs/react-tailwind-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/Resolvr-io/escrow**](https://github.com/Resolvr-io/escrow/tree/master/) | 9s | [Data](./data/github.com/Resolvr-io/escrow/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/RinteRface/shinyNextUI**](https://github.com/RinteRface/shinyNextUI/tree/main/js) (`js`) | 55s | [Data](./data/github.com/RinteRface/shinyNextUI/bWFpbgo/anMK) |
| ✅ | [**github.com/Rocketseat/maratona-explorer-ticket**](https://github.com/Rocketseat/maratona-explorer-ticket/tree/main/) | 9s | [Data](./data/github.com/Rocketseat/maratona-explorer-ticket/bWFpbgo/Cg) |
| ✅ | [**github.com/Rodeoclash/vodon-player**](https://github.com/Rodeoclash/vodon-player/tree/main/player) (`player`) | 9s | [Data](./data/github.com/Rodeoclash/vodon-player/bWFpbgo/cGxheWVyCg) |
| ✅ | [**github.com/RoyRao2333/template-vite-react-ts-tailwind**](https://github.com/RoyRao2333/template-vite-react-ts-tailwind/tree/main/) | 7s | [Data](./data/github.com/RoyRao2333/template-vite-react-ts-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/RubenVanEldik/hackerdaily-frontend**](https://github.com/RubenVanEldik/hackerdaily-frontend/tree/main/) | 10s | [Data](./data/github.com/RubenVanEldik/hackerdaily-frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/RubiconDeFi/docs**](https://github.com/RubiconDeFi/docs/tree/master/) | 10s | [Data](./data/github.com/RubiconDeFi/docs/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Ryczko/FormsLab**](https://github.com/Ryczko/FormsLab/tree/dev/) | 8s | [Data](./data/github.com/Ryczko/FormsLab/ZGV2Cg/Cg) |
| ✅ | [**github.com/RyuNIshimura/nextjs-blog**](https://github.com/RyuNIshimura/nextjs-blog/tree/main/) | 11s | [Data](./data/github.com/RyuNIshimura/nextjs-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/Sadeedpv/MeTube**](https://github.com/Sadeedpv/MeTube/tree/main/) | 7s | [Data](./data/github.com/Sadeedpv/MeTube/bWFpbgo/Cg) |
| ❌ | [**github.com/Sahil-Connect/sahil**](https://github.com/Sahil-Connect/sahil/tree/develop/apps%2Fagent) (`apps/agent`) | *n/a* | [Data](./data/github.com/Sahil-Connect/sahil/ZGV2ZWxvcAo/YXBwcy9hZ2VudAo) |
| ❌ | [**github.com/Sahil-Connect/sahil**](https://github.com/Sahil-Connect/sahil/tree/develop/apps%2Fclient) (`apps/client`) | *n/a* | [Data](./data/github.com/Sahil-Connect/sahil/ZGV2ZWxvcAo/YXBwcy9jbGllbnQK) |
| ❌ | [**github.com/Sahil-Connect/sahil**](https://github.com/Sahil-Connect/sahil/tree/develop/apps%2Fcourier) (`apps/courier`) | *n/a* | [Data](./data/github.com/Sahil-Connect/sahil/ZGV2ZWxvcAo/YXBwcy9jb3VyaWVyCg) |
| ❌ | [**github.com/Sahil-Connect/sahil**](https://github.com/Sahil-Connect/sahil/tree/develop/apps%2Fwebsite) (`apps/website`) | *n/a* | [Data](./data/github.com/Sahil-Connect/sahil/ZGV2ZWxvcAo/YXBwcy93ZWJzaXRlCg) |
| ✅ | [**github.com/SandhyaR1007/eyesome-react**](https://github.com/SandhyaR1007/eyesome-react/tree/main/) | 9s | [Data](./data/github.com/SandhyaR1007/eyesome-react/bWFpbgo/Cg) |
| ✅ | [**github.com/Sanjay-Ganapathi/Pixiemist**](https://github.com/Sanjay-Ganapathi/Pixiemist/tree/main/) | 8s | [Data](./data/github.com/Sanjay-Ganapathi/Pixiemist/bWFpbgo/Cg) |
| ✅ | [**github.com/Saransh29/ai-builder**](https://github.com/Saransh29/ai-builder/tree/main/) | 6s | [Data](./data/github.com/Saransh29/ai-builder/bWFpbgo/Cg) |
| ✅ | [**github.com/SauveJeanLuc/coffee-tasks**](https://github.com/SauveJeanLuc/coffee-tasks/tree/master/) | 8s | [Data](./data/github.com/SauveJeanLuc/coffee-tasks/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Sayan-Maity/Watcho**](https://github.com/Sayan-Maity/Watcho/tree/main/) | 6s | [Data](./data/github.com/Sayan-Maity/Watcho/bWFpbgo/Cg) |
| ✅ | [**github.com/Sayoko123f/familymap**](https://github.com/Sayoko123f/familymap/tree/master/) | 7s | [Data](./data/github.com/Sayoko123f/familymap/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/SciPhi-AI/R2R**](https://github.com/SciPhi-AI/R2R/tree/main/chat) (`chat`) | 9s | [Data](./data/github.com/SciPhi-AI/R2R/bWFpbgo/Y2hhdAo) |
| ✅ | [**github.com/SciPhi-AI/R2R**](https://github.com/SciPhi-AI/R2R/tree/main/web) (`web`) | 9s | [Data](./data/github.com/SciPhi-AI/R2R/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/Seb-GRAF/tailwind-helper**](https://github.com/Seb-GRAF/tailwind-helper/tree/main/) | 9s | [Data](./data/github.com/Seb-GRAF/tailwind-helper/bWFpbgo/Cg) |
| ✅ | [**github.com/SecureSECODAO/dao-webapp**](https://github.com/SecureSECODAO/dao-webapp/tree/master/) | 7s | [Data](./data/github.com/SecureSECODAO/dao-webapp/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Selim-Dev/ecommerce-next.js-strapi**](https://github.com/Selim-Dev/ecommerce-next.js-strapi/tree/main/) | 6s | [Data](./data/github.com/Selim-Dev/ecommerce-next.js-strapi/bWFpbgo/Cg) |
| ✅ | [**github.com/Senexis/RDO-GG-Tunables**](https://github.com/Senexis/RDO-GG-Tunables/tree/main/) | 8s | [Data](./data/github.com/Senexis/RDO-GG-Tunables/bWFpbgo/Cg) |
| ✅ | [**github.com/SeriousBug/http-drogue**](https://github.com/SeriousBug/http-drogue/tree/main/) | 7s | [Data](./data/github.com/SeriousBug/http-drogue/bWFpbgo/Cg) |
| ✅ | [**github.com/Seth-McKilla/nextjs-wagmi**](https://github.com/Seth-McKilla/nextjs-wagmi/tree/main/) | 8s | [Data](./data/github.com/Seth-McKilla/nextjs-wagmi/bWFpbgo/Cg) |
| ✅ | [**github.com/Shanki200801/milestone-monitor**](https://github.com/Shanki200801/milestone-monitor/tree/main/) | 6s | [Data](./data/github.com/Shanki200801/milestone-monitor/bWFpbgo/Cg) |
| ✅ | [**github.com/SheCodeAfrica-Nairobi/SheCodeAfrica-Nairobi-Website**](https://github.com/SheCodeAfrica-Nairobi/SheCodeAfrica-Nairobi-Website/tree/main/) | 10s | [Data](./data/github.com/SheCodeAfrica-Nairobi/SheCodeAfrica-Nairobi-Website/bWFpbgo/Cg) |
| ✅ | [**github.com/Shine-Theme/halo-theme-crux**](https://github.com/Shine-Theme/halo-theme-crux/tree/master/) | 10s | [Data](./data/github.com/Shine-Theme/halo-theme-crux/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ShivaBhattacharjee/Muxik**](https://github.com/ShivaBhattacharjee/Muxik/tree/main/) | 5s | [Data](./data/github.com/ShivaBhattacharjee/Muxik/bWFpbgo/Cg) |
| ✅ | [**github.com/Shiyan7/sudoku-effector**](https://github.com/Shiyan7/sudoku-effector/tree/master/) | 10s | [Data](./data/github.com/Shiyan7/sudoku-effector/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/Shopify/blockchain-components**](https://github.com/Shopify/blockchain-components/tree/main/packages%2Fconnect-wallet) (`packages/connect-wallet`) | *n/a* | [Data](./data/github.com/Shopify/blockchain-components/bWFpbgo/cGFja2FnZXMvY29ubmVjdC13YWxsZXQK) |
| ❌ | [**github.com/Shopify/blockchain-components**](https://github.com/Shopify/blockchain-components/tree/main/packages%2Fshared) (`packages/shared`) | *n/a* | [Data](./data/github.com/Shopify/blockchain-components/bWFpbgo/cGFja2FnZXMvc2hhcmVkCg) |
| ✅ | [**github.com/Shopify/blockchain-components**](https://github.com/Shopify/blockchain-components/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 12s | [Data](./data/github.com/Shopify/blockchain-components/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ❌ | [**github.com/Shopify/blockchain-components**](https://github.com/Shopify/blockchain-components/tree/main/packages%2Ftokengate) (`packages/tokengate`) | *n/a* | [Data](./data/github.com/Shopify/blockchain-components/bWFpbgo/cGFja2FnZXMvdG9rZW5nYXRlCg) |
| ✅ | [**github.com/Shopify/hydrogen**](https://github.com/Shopify/hydrogen/tree/main/templates%2Fdemo-store) (`templates/demo-store`) | 12s | [Data](./data/github.com/Shopify/hydrogen/bWFpbgo/dGVtcGxhdGVzL2RlbW8tc3RvcmUK) |
| ✅ | [**github.com/Shopify/hydrogen-workshop**](https://github.com/Shopify/hydrogen-workshop/tree/main/) | 7s | [Data](./data/github.com/Shopify/hydrogen-workshop/bWFpbgo/Cg) |
| ✅ | [**github.com/Shreyaan/youtube-sort-by-oldest**](https://github.com/Shreyaan/youtube-sort-by-oldest/tree/main/frontend) (`frontend`) | 8s | [Data](./data/github.com/Shreyaan/youtube-sort-by-oldest/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/Shroud-email/shroud.email**](https://github.com/Shroud-email/shroud.email/tree/main/assets) (`assets`) | 6s | [Data](./data/github.com/Shroud-email/shroud.email/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/ShubhamSarda/cinemate**](https://github.com/ShubhamSarda/cinemate/tree/main/) | 6s | [Data](./data/github.com/ShubhamSarda/cinemate/bWFpbgo/Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/063) (`063`) | 10s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDYzCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/064) (`064`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDY0Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/065) (`065`) | 6s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDY1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/067) (`067`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDY3Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/068) (`068`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDY4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/069) (`069`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDY5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/070) (`070`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDcwCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/071) (`071`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDcxCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/072) (`072`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDcyCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/073) (`073`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDczCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/074) (`074`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDc0Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/075) (`075`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDc1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/076) (`076`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDc2Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/077) (`077`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDc3Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/078) (`078`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDc4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/079) (`079`) | 6s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDc5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/097) (`097`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDk3Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/098) (`098`) | 6s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDk4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/099) (`099`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MDk5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/100) (`100`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTAwCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/101) (`101`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTAxCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/102) (`102`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTAyCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/103) (`103`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTAzCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/104) (`104`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTA0Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/105) (`105`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTA1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/106) (`106`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTA2Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/107) (`107`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTA3Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/108) (`108`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTA4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/109) (`109`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTA5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/110) (`110`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTEwCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/111) (`111`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTExCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/112) (`112`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTEyCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/113) (`113`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTEzCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/114) (`114`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTE0Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/115) (`115`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTE1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/118) (`118`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTE4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/119) (`119`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTE5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/120) (`120`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTIwCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/121) (`121`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTIxCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/122) (`122`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTIyCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/123) (`123`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTIzCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/124) (`124`) | 10s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTI0Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/125) (`125`) | 6s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTI1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/126) (`126`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTI2Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/127) (`127`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTI3Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/128) (`128`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTI4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/129) (`129`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTI5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/130) (`130`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTMwCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/131) (`131`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTMxCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/132) (`132`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTMyCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/133) (`133`) | 6s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTMzCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/134) (`134`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTM0Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/135) (`135`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTM1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/136) (`136`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTM2Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/137) (`137`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTM3Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/138) (`138`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTM4Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/139) (`139`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTM5Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/140) (`140`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTQwCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/141) (`141`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTQxCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/142) (`142`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTQyCg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/145) (`145`) | 7s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTQ1Cg) |
| ✅ | [**github.com/ShubhamSarda/react-ul**](https://github.com/ShubhamSarda/react-ul/tree/main/147) (`147`) | 8s | [Data](./data/github.com/ShubhamSarda/react-ul/bWFpbgo/MTQ3Cg) |
| ✅ | [**github.com/Siam456/MERN_Basic_setup**](https://github.com/Siam456/MERN_Basic_setup/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/Siam456/MERN_Basic_setup/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/Siddhant-Goswami/dev-expo-sass**](https://github.com/Siddhant-Goswami/dev-expo-sass/tree/main/) | 7s | [Data](./data/github.com/Siddhant-Goswami/dev-expo-sass/bWFpbgo/Cg) |
| ✅ | [**github.com/SigmaHQ/sigmahq.github.io**](https://github.com/SigmaHQ/sigmahq.github.io/tree/main/) | 10s | [Data](./data/github.com/SigmaHQ/sigmahq.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/Significant-Gravitas/AutoGPT**](https://github.com/Significant-Gravitas/AutoGPT/tree/master/benchmark%2Ffrontend) (`benchmark/frontend`) | 18s | [Data](./data/github.com/Significant-Gravitas/AutoGPT/bWFzdGVyCg/YmVuY2htYXJrL2Zyb250ZW5kCg) |
| ✅ | [**github.com/SikandarJODD/SvelteKit-Drizzle**](https://github.com/SikandarJODD/SvelteKit-Drizzle/tree/master/) | 7s | [Data](./data/github.com/SikandarJODD/SvelteKit-Drizzle/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/SimeonGriggs/sanity-remix-template**](https://github.com/SimeonGriggs/sanity-remix-template/tree/main/) | 8s | [Data](./data/github.com/SimeonGriggs/sanity-remix-template/bWFpbgo/Cg) |
| ✅ | [**github.com/SimeonGriggs/tints.dev**](https://github.com/SimeonGriggs/tints.dev/tree/main/) | 11s | [Data](./data/github.com/SimeonGriggs/tints.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/SingularityLabs-ai/chatgpt-scientific-publications-extension**](https://github.com/SingularityLabs-ai/chatgpt-scientific-publications-extension/tree/main/) | 6s | [Data](./data/github.com/SingularityLabs-ai/chatgpt-scientific-publications-extension/bWFpbgo/Cg) |
| ❌ | [**github.com/Siumauricio/rippleui**](https://github.com/Siumauricio/rippleui/tree/main/) | *n/a* | [Data](./data/github.com/Siumauricio/rippleui/bWFpbgo/Cg) |
| ✅ | [**github.com/Siumauricio/rippleui**](https://github.com/Siumauricio/rippleui/tree/main/docs) (`docs`) | 13s | [Data](./data/github.com/Siumauricio/rippleui/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/Smuice-com/petra**](https://github.com/Smuice-com/petra/tree/main/) | 14s | [Data](./data/github.com/Smuice-com/petra/bWFpbgo/Cg) |
| ✅ | [**github.com/SnO2WMaN/factchecker**](https://github.com/SnO2WMaN/factchecker/tree/main/) | 7s | [Data](./data/github.com/SnO2WMaN/factchecker/bWFpbgo/Cg) |
| ✅ | [**github.com/Sorry-for-time/railway-page**](https://github.com/Sorry-for-time/railway-page/tree/master/) | 7s | [Data](./data/github.com/Sorry-for-time/railway-page/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/SphericalKat/lithograph**](https://github.com/SphericalKat/lithograph/tree/develop/) | 11s | [Data](./data/github.com/SphericalKat/lithograph/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/SpinalCMS/docs-template**](https://github.com/SpinalCMS/docs-template/tree/main/) | 9s | [Data](./data/github.com/SpinalCMS/docs-template/bWFpbgo/Cg) |
| ❌ | [**github.com/Stability-AI/StableStudio**](https://github.com/Stability-AI/StableStudio/tree/main/packages%2Fstablestudio-ui) (`packages/stablestudio-ui`) | *n/a* | [Data](./data/github.com/Stability-AI/StableStudio/bWFpbgo/cGFja2FnZXMvc3RhYmxlc3R1ZGlvLXVpCg) |
| ✅ | [**github.com/StaticMania/keep-react**](https://github.com/StaticMania/keep-react/tree/main/) | 14s | [Data](./data/github.com/StaticMania/keep-react/bWFpbgo/Cg) |
| ✅ | [**github.com/StefanKandlbinder/styledictionarytailwindbridge**](https://github.com/StefanKandlbinder/styledictionarytailwindbridge/tree/main/) | 9s | [Data](./data/github.com/StefanKandlbinder/styledictionarytailwindbridge/bWFpbgo/Cg) |
| ✅ | [**github.com/SteinOveHelset/tealcrm**](https://github.com/SteinOveHelset/tealcrm/tree/main/) | 3s | [Data](./data/github.com/SteinOveHelset/tealcrm/bWFpbgo/Cg) |
| ✅ | [**github.com/Stroik/wa-yummy**](https://github.com/Stroik/wa-yummy/tree/main/client) (`client`) | 6s | [Data](./data/github.com/Stroik/wa-yummy/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/Submarinonline/correctJP-web**](https://github.com/Submarinonline/correctJP-web/tree/master/) | 13s | [Data](./data/github.com/Submarinonline/correctJP-web/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/_templates%2F01-basic) (`_templates/01-basic`) | 12s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/X3RlbXBsYXRlcy8wMS1iYXNpYwo) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/_templates%2F03-basic-electron) (`_templates/03-basic-electron`) | 12s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/X3RlbXBsYXRlcy8wMy1iYXNpYy1lbGVjdHJvbgo) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/_templates%2F04-electron-build) (`_templates/04-electron-build`) | 12s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/X3RlbXBsYXRlcy8wNC1lbGVjdHJvbi1idWlsZAo) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/_templates%2F05-tailwind-fonts) (`_templates/05-tailwind-fonts`) | 11s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/X3RlbXBsYXRlcy8wNS10YWlsd2luZC1mb250cwo) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-anime) (`react-anime`) | 10s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtYW5pbWUK) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-infinite-scroller) (`react-infinite-scroller`) | 8s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtaW5maW5pdGUtc2Nyb2xsZXIK) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-leetcode-clone%2Fclient) (`react-leetcode-clone/client`) | 11s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtbGVldGNvZGUtY2xvbmUvY2xpZW50Cg) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-pokemon-cards) (`react-pokemon-cards`) | 8s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtcG9rZW1vbi1jYXJkcwo) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-pokemon-kanban) (`react-pokemon-kanban`) | 8s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtcG9rZW1vbi1rYW5iYW4K) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-redux-todo) (`react-redux-todo`) | 12s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtcmVkdXgtdG9kbwo) |
| ✅ | [**github.com/SuboptimalEng/coding-tutorials**](https://github.com/SuboptimalEng/coding-tutorials/tree/main/react-vim-tutor%2Fclient) (`react-vim-tutor/client`) | 12s | [Data](./data/github.com/SuboptimalEng/coding-tutorials/bWFpbgo/cmVhY3QtdmltLXR1dG9yL2NsaWVudAo) |
| ✅ | [**github.com/SuboptimalEng/tailwind-clones**](https://github.com/SuboptimalEng/tailwind-clones/tree/main/01-youtube) (`01-youtube`) | 15s | [Data](./data/github.com/SuboptimalEng/tailwind-clones/bWFpbgo/MDEteW91dHViZQo) |
| ✅ | [**github.com/SuboptimalEng/tailwind-clones**](https://github.com/SuboptimalEng/tailwind-clones/tree/main/02-reddit) (`02-reddit`) | 10s | [Data](./data/github.com/SuboptimalEng/tailwind-clones/bWFpbgo/MDItcmVkZGl0Cg) |
| ✅ | [**github.com/SuboptimalEng/tailwind-clones**](https://github.com/SuboptimalEng/tailwind-clones/tree/main/03-twitter) (`03-twitter`) | 11s | [Data](./data/github.com/SuboptimalEng/tailwind-clones/bWFpbgo/MDMtdHdpdHRlcgo) |
| ✅ | [**github.com/SuboptimalEng/tailwind-clones**](https://github.com/SuboptimalEng/tailwind-clones/tree/main/04-messenger) (`04-messenger`) | 11s | [Data](./data/github.com/SuboptimalEng/tailwind-clones/bWFpbgo/MDQtbWVzc2VuZ2VyCg) |
| ✅ | [**github.com/SuboptimalEng/tailwind-clones**](https://github.com/SuboptimalEng/tailwind-clones/tree/main/05-vscode) (`05-vscode`) | 10s | [Data](./data/github.com/SuboptimalEng/tailwind-clones/bWFpbgo/MDUtdnNjb2RlCg) |
| ✅ | [**github.com/SuboptimalEng/tailwind-clones**](https://github.com/SuboptimalEng/tailwind-clones/tree/main/_template) (`_template`) | 19s | [Data](./data/github.com/SuboptimalEng/tailwind-clones/bWFpbgo/X3RlbXBsYXRlCg) |
| ✅ | [**github.com/Sudhanva-Nadiger/Portfolio**](https://github.com/Sudhanva-Nadiger/Portfolio/tree/main/) | 6s | [Data](./data/github.com/Sudhanva-Nadiger/Portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/Sumis34/cuota-filesharing**](https://github.com/Sumis34/cuota-filesharing/tree/main/) | 11s | [Data](./data/github.com/Sumis34/cuota-filesharing/bWFpbgo/Cg) |
| ✅ | [**github.com/SuperteamDAO/superteam-global**](https://github.com/SuperteamDAO/superteam-global/tree/main/) | 9s | [Data](./data/github.com/SuperteamDAO/superteam-global/bWFpbgo/Cg) |
| ✅ | [**github.com/Svelte-Sirens/svelte-sirens**](https://github.com/Svelte-Sirens/svelte-sirens/tree/main/) | 19s | [Data](./data/github.com/Svelte-Sirens/svelte-sirens/bWFpbgo/Cg) |
| ✅ | [**github.com/SynapseTech/TimezoneDB**](https://github.com/SynapseTech/TimezoneDB/tree/main/web) (`web`) | 9s | [Data](./data/github.com/SynapseTech/TimezoneDB/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/SynapseTech/preline-react**](https://github.com/SynapseTech/preline-react/tree/main/) | 9s | [Data](./data/github.com/SynapseTech/preline-react/bWFpbgo/Cg) |
| ✅ | [**github.com/Sync-Codes/AniKo**](https://github.com/Sync-Codes/AniKo/tree/master/) | 11s | [Data](./data/github.com/Sync-Codes/AniKo/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/TGlide/zats-reddit**](https://github.com/TGlide/zats-reddit/tree/main/) | 6s | [Data](./data/github.com/TGlide/zats-reddit/bWFpbgo/Cg) |
| ✅ | [**github.com/TRADLY-PLATFORM/Butterflies**](https://github.com/TRADLY-PLATFORM/Butterflies/tree/main/) | 10s | [Data](./data/github.com/TRADLY-PLATFORM/Butterflies/bWFpbgo/Cg) |
| ✅ | [**github.com/TRIPTYK/ember-boilerplate**](https://github.com/TRIPTYK/ember-boilerplate/tree/main/) | 7s | [Data](./data/github.com/TRIPTYK/ember-boilerplate/bWFpbgo/Cg) |
| ✅ | [**github.com/Tablane/tablane**](https://github.com/Tablane/tablane/tree/master/) | 6s | [Data](./data/github.com/Tablane/tablane/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/TailAdmin/free-react-tailwind-admin-dashboard**](https://github.com/TailAdmin/free-react-tailwind-admin-dashboard/tree/main/) | 5s | [Data](./data/github.com/TailAdmin/free-react-tailwind-admin-dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/TailAdmin/tailadmin-free-tailwind-dashboard-template**](https://github.com/TailAdmin/tailadmin-free-tailwind-dashboard-template/tree/main/) | 11s | [Data](./data/github.com/TailAdmin/tailadmin-free-tailwind-dashboard-template/bWFpbgo/Cg) |
| ✅ | [**github.com/TailGrids/play-tailwind**](https://github.com/TailGrids/play-tailwind/tree/main/) | 6s | [Data](./data/github.com/TailGrids/play-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/TailGrids/tailwind-ui-components**](https://github.com/TailGrids/tailwind-ui-components/tree/main/) | 8s | [Data](./data/github.com/TailGrids/tailwind-ui-components/bWFpbgo/Cg) |
| ✅ | [**github.com/Tailus-UI/astro-theme**](https://github.com/Tailus-UI/astro-theme/tree/main/) | 15s | [Data](./data/github.com/Tailus-UI/astro-theme/bWFpbgo/Cg) |
| ✅ | [**github.com/Tailus-UI/blocks**](https://github.com/Tailus-UI/blocks/tree/main/) | 7s | [Data](./data/github.com/Tailus-UI/blocks/bWFpbgo/Cg) |
| ✅ | [**github.com/TaipeiDev/portfolio-t3**](https://github.com/TaipeiDev/portfolio-t3/tree/main/) | 12s | [Data](./data/github.com/TaipeiDev/portfolio-t3/bWFpbgo/Cg) |
| ✅ | [**github.com/TeXmeijin/vite-react-ts-tailwind-firebase-starter**](https://github.com/TeXmeijin/vite-react-ts-tailwind-firebase-starter/tree/main/) | 9s | [Data](./data/github.com/TeXmeijin/vite-react-ts-tailwind-firebase-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/TeamDman/toolformer**](https://github.com/TeamDman/toolformer/tree/main/frontend) (`frontend`) | 9s | [Data](./data/github.com/TeamDman/toolformer/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/TechNodes2-0/ElectiveHub**](https://github.com/TechNodes2-0/ElectiveHub/tree/main/client) (`client`) | 9s | [Data](./data/github.com/TechNodes2-0/ElectiveHub/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/TehNut/AniMouto**](https://github.com/TehNut/AniMouto/tree/master/) | 8s | [Data](./data/github.com/TehNut/AniMouto/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Tencent/omi**](https://github.com/Tencent/omi/tree/master/packages%2Fomi-elements) (`packages/omi-elements`) | 7s | [Data](./data/github.com/Tencent/omi/bWFzdGVyCg/cGFja2FnZXMvb21pLWVsZW1lbnRzCg) |
| ✅ | [**github.com/Tencent/omi**](https://github.com/Tencent/omi/tree/master/packages%2Fomi-router) (`packages/omi-router`) | 10s | [Data](./data/github.com/Tencent/omi/bWFzdGVyCg/cGFja2FnZXMvb21pLXJvdXRlcgo) |
| ✅ | [**github.com/Tencent/omi**](https://github.com/Tencent/omi/tree/master/packages%2Fomi-starter-spa) (`packages/omi-starter-spa`) | 6s | [Data](./data/github.com/Tencent/omi/bWFzdGVyCg/cGFja2FnZXMvb21pLXN0YXJ0ZXItc3BhCg) |
| ✅ | [**github.com/Tencent/omi**](https://github.com/Tencent/omi/tree/master/packages%2Fomi-starter-tailwind) (`packages/omi-starter-tailwind`) | 7s | [Data](./data/github.com/Tencent/omi/bWFzdGVyCg/cGFja2FnZXMvb21pLXN0YXJ0ZXItdGFpbHdpbmQK) |
| ✅ | [**github.com/Tencent/omi**](https://github.com/Tencent/omi/tree/master/packages%2Fomi-templates) (`packages/omi-templates`) | 6s | [Data](./data/github.com/Tencent/omi/bWFzdGVyCg/cGFja2FnZXMvb21pLXRlbXBsYXRlcwo) |
| ✅ | [**github.com/Tencent/omi**](https://github.com/Tencent/omi/tree/master/packages%2Fomiu) (`packages/omiu`) | 7s | [Data](./data/github.com/Tencent/omi/bWFzdGVyCg/cGFja2FnZXMvb21pdQo) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/695650-U2Q38ZH2%2Fui) (`695650-U2Q38ZH2/ui`) | 43s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/Njk1NjUwLVUyUTM4WkgyL3VpCg) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/AsianDeCoders%2Ftezotix) (`AsianDeCoders/tezotix`) | 24s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/QXNpYW5EZUNvZGVycy90ZXpvdGl4Cg) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/ChainBuggers%2FFrontend) (`ChainBuggers/Frontend`) | 25s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/Q2hhaW5CdWdnZXJzL0Zyb250ZW5kCg) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/Coding%20Homies%2Fclient) (`Coding Homies/client`) | 28s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/Q29kaW5nIEhvbWllcy9jbGllbnQK) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/InnovateNerds) (`InnovateNerds`) | 43s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/SW5ub3ZhdGVOZXJkcwo) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/Juggernaut%2Ffrontend) (`Juggernaut/frontend`) | 26s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/SnVnZ2VybmF1dC9mcm9udGVuZAo) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/ServerGeeks%2Fclient) (`ServerGeeks/client`) | 28s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/U2VydmVyR2Vla3MvY2xpZW50Cg) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/VISION-X) (`VISION-X`) | 24s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/VklTSU9OLVgK) |
| ✅ | [**github.com/Tezos-India/TezAsia-2k23**](https://github.com/Tezos-India/TezAsia-2k23/tree/main/Vanguard%2Fapp) (`Vanguard/app`) | 24s | [Data](./data/github.com/Tezos-India/TezAsia-2k23/bWFpbgo/VmFuZ3VhcmQvYXBwCg) |
| ✅ | [**github.com/ThaddeusJiang/turborepo-starter**](https://github.com/ThaddeusJiang/turborepo-starter/tree/main/apps%2Fweb) (`apps/web`) | 2m 48s | [Data](./data/github.com/ThaddeusJiang/turborepo-starter/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/ThatBatLuna/Beadi**](https://github.com/ThatBatLuna/Beadi/tree/main/) | 6s | [Data](./data/github.com/ThatBatLuna/Beadi/bWFpbgo/Cg) |
| ✅ | [**github.com/The-Embassy-Collective/athan**](https://github.com/The-Embassy-Collective/athan/tree/main/) | 18s | [Data](./data/github.com/The-Embassy-Collective/athan/bWFpbgo/Cg) |
| ✅ | [**github.com/TheInspiredConjurer/Online-Questionnaire-System**](https://github.com/TheInspiredConjurer/Online-Questionnaire-System/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/TheInspiredConjurer/Online-Questionnaire-System/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/TheMisinformationGame/MisinformationGame**](https://github.com/TheMisinformationGame/MisinformationGame/tree/main/) | 9s | [Data](./data/github.com/TheMisinformationGame/MisinformationGame/bWFpbgo/Cg) |
| ✅ | [**github.com/TheOtterlord/semver**](https://github.com/TheOtterlord/semver/tree/main/) | 22s | [Data](./data/github.com/TheOtterlord/semver/bWFpbgo/Cg) |
| ✅ | [**github.com/ThePHPF/thephp.foundation**](https://github.com/ThePHPF/thephp.foundation/tree/main/) | 6s | [Data](./data/github.com/ThePHPF/thephp.foundation/bWFpbgo/Cg) |
| ✅ | [**github.com/TheRealKasumi/NikoLight**](https://github.com/TheRealKasumi/NikoLight/tree/main/ui) (`ui`) | 8s | [Data](./data/github.com/TheRealKasumi/NikoLight/bWFpbgo/dWkK) |
| ✅ | [**github.com/TheTipo01/YADMB**](https://github.com/TheTipo01/YADMB/tree/master/web) (`web`) | 7s | [Data](./data/github.com/TheTipo01/YADMB/bWFzdGVyCg/d2ViCg) |
| ✅ | [**github.com/Thecosy/chatgpt-helper**](https://github.com/Thecosy/chatgpt-helper/tree/main/) | 7s | [Data](./data/github.com/Thecosy/chatgpt-helper/bWFpbgo/Cg) |
| ✅ | [**github.com/ThibautMarechal/turborepo-remote-cache**](https://github.com/ThibautMarechal/turborepo-remote-cache/tree/main/) | 12s | [Data](./data/github.com/ThibautMarechal/turborepo-remote-cache/bWFpbgo/Cg) |
| ✅ | [**github.com/ThijmenGThN/directus-themebuilder**](https://github.com/ThijmenGThN/directus-themebuilder/tree/main/) | 10s | [Data](./data/github.com/ThijmenGThN/directus-themebuilder/bWFpbgo/Cg) |
| ✅ | [**github.com/Thiritin/open-signage**](https://github.com/Thiritin/open-signage/tree/main/) | 16s | [Data](./data/github.com/Thiritin/open-signage/bWFpbgo/Cg) |
| ✅ | [**github.com/Thomashighbaugh/resume**](https://github.com/Thomashighbaugh/resume/tree/main/) | 9s | [Data](./data/github.com/Thomashighbaugh/resume/bWFpbgo/Cg) |
| ✅ | [**github.com/Thoth1111/Fullstack-Capstone-Project**](https://github.com/Thoth1111/Fullstack-Capstone-Project/tree/main/) | 7s | [Data](./data/github.com/Thoth1111/Fullstack-Capstone-Project/bWFpbgo/Cg) |
| ✅ | [**github.com/TibixDev/GenshinLyreParser**](https://github.com/TibixDev/GenshinLyreParser/tree/main/) | 10s | [Data](./data/github.com/TibixDev/GenshinLyreParser/bWFpbgo/Cg) |
| ✅ | [**github.com/TobySuch/Shifter**](https://github.com/TobySuch/Shifter/tree/main/shifter) (`shifter`) | 9s | [Data](./data/github.com/TobySuch/Shifter/bWFpbgo/c2hpZnRlcgo) |
| ✅ | [**github.com/TomDoesTech/t3-chat**](https://github.com/TomDoesTech/t3-chat/tree/main/) | 9s | [Data](./data/github.com/TomDoesTech/t3-chat/bWFpbgo/Cg) |
| ✅ | [**github.com/TreyWW/MyFinances**](https://github.com/TreyWW/MyFinances/tree/main/) | 8s | [Data](./data/github.com/TreyWW/MyFinances/bWFpbgo/Cg) |
| ✅ | [**github.com/TryGhost/Ghost**](https://github.com/TryGhost/Ghost/tree/main/apps%2Fadmin-x-design-system) (`apps/admin-x-design-system`) | 15s | [Data](./data/github.com/TryGhost/Ghost/bWFpbgo/YXBwcy9hZG1pbi14LWRlc2lnbi1zeXN0ZW0K) |
| ❌ | [**github.com/TryGhost/Ghost**](https://github.com/TryGhost/Ghost/tree/main/apps%2Fadmin-x-settings) (`apps/admin-x-settings`) | *n/a* | [Data](./data/github.com/TryGhost/Ghost/bWFpbgo/YXBwcy9hZG1pbi14LXNldHRpbmdzCg) |
| ✅ | [**github.com/TryGhost/Ghost**](https://github.com/TryGhost/Ghost/tree/main/apps%2Fcomments-ui) (`apps/comments-ui`) | 22s | [Data](./data/github.com/TryGhost/Ghost/bWFpbgo/YXBwcy9jb21tZW50cy11aQo) |
| ✅ | [**github.com/TryGhost/Ghost**](https://github.com/TryGhost/Ghost/tree/main/apps%2Fsignup-form) (`apps/signup-form`) | 22s | [Data](./data/github.com/TryGhost/Ghost/bWFpbgo/YXBwcy9zaWdudXAtZm9ybQo) |
| ❌ | [**github.com/TryGhost/Ghost**](https://github.com/TryGhost/Ghost/tree/main/apps%2Fsodo-search) (`apps/sodo-search`) | *n/a* | [Data](./data/github.com/TryGhost/Ghost/bWFpbgo/YXBwcy9zb2RvLXNlYXJjaAo) |
| ❌ | [**github.com/TunNandaAung/tweety**](https://github.com/TunNandaAung/tweety/tree/main/) | *n/a* | [Data](./data/github.com/TunNandaAung/tweety/bWFpbgo/Cg) |
| ✅ | [**github.com/UFund-Me/Qbot**](https://github.com/UFund-Me/Qbot/tree/main/pytrader%2Ffrontend) (`pytrader/frontend`) | 25s | [Data](./data/github.com/UFund-Me/Qbot/bWFpbgo/cHl0cmFkZXIvZnJvbnRlbmQK) |
| ✅ | [**github.com/USKhokhar/astro-vitae**](https://github.com/USKhokhar/astro-vitae/tree/master/) | 19s | [Data](./data/github.com/USKhokhar/astro-vitae/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/USKhokhar/fehrist**](https://github.com/USKhokhar/fehrist/tree/master/) | 19s | [Data](./data/github.com/USKhokhar/fehrist/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/UTDNebula/utd-trends**](https://github.com/UTDNebula/utd-trends/tree/develop/) | 8s | [Data](./data/github.com/UTDNebula/utd-trends/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/Udit-takkar/Web3-Chess**](https://github.com/Udit-takkar/Web3-Chess/tree/main/packages%2Ffrontend) (`packages/frontend`) | 13s | [Data](./data/github.com/Udit-takkar/Web3-Chess/bWFpbgo/cGFja2FnZXMvZnJvbnRlbmQK) |
| ✅ | [**github.com/UltiRequiem/pokedex**](https://github.com/UltiRequiem/pokedex/tree/main/) | 7s | [Data](./data/github.com/UltiRequiem/pokedex/bWFpbgo/Cg) |
| ✅ | [**github.com/UltiRequiem/solidjs-tailwinds-hello-world**](https://github.com/UltiRequiem/solidjs-tailwinds-hello-world/tree/main/) | 7s | [Data](./data/github.com/UltiRequiem/solidjs-tailwinds-hello-world/bWFpbgo/Cg) |
| ✅ | [**github.com/Ultramarine-Linux/website**](https://github.com/Ultramarine-Linux/website/tree/main/) | 25s | [Data](./data/github.com/Ultramarine-Linux/website/bWFpbgo/Cg) |
| ✅ | [**github.com/Un2mercey/vue-certification**](https://github.com/Un2mercey/vue-certification/tree/stage/) | 9s | [Data](./data/github.com/Un2mercey/vue-certification/c3RhZ2UK/Cg) |
| ✅ | [**github.com/UnTalPeluca/kanban-task-management**](https://github.com/UnTalPeluca/kanban-task-management/tree/master/) | 6s | [Data](./data/github.com/UnTalPeluca/kanban-task-management/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/UniKonf/vibey**](https://github.com/UniKonf/vibey/tree/main/) | 8s | [Data](./data/github.com/UniKonf/vibey/bWFpbgo/Cg) |
| ✅ | [**github.com/Uninen/vite-ts-tailwind-starter**](https://github.com/Uninen/vite-ts-tailwind-starter/tree/main/) | 24s | [Data](./data/github.com/Uninen/vite-ts-tailwind-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/Uninen/vue-json-search**](https://github.com/Uninen/vue-json-search/tree/main/) | 6s | [Data](./data/github.com/Uninen/vue-json-search/bWFpbgo/Cg) |
| ❌ | [**github.com/UrbanWill/nft-marketplace**](https://github.com/UrbanWill/nft-marketplace/tree/main/) | *n/a* | [Data](./data/github.com/UrbanWill/nft-marketplace/bWFpbgo/Cg) |
| ✅ | [**github.com/UsmanLiaqat404/dashcode-nextjs-admin-template**](https://github.com/UsmanLiaqat404/dashcode-nextjs-admin-template/tree/main/) | 6s | [Data](./data/github.com/UsmanLiaqat404/dashcode-nextjs-admin-template/bWFpbgo/Cg) |
| ✅ | [**github.com/Vijaykv5/SnapGrid**](https://github.com/Vijaykv5/SnapGrid/tree/master/) | 8s | [Data](./data/github.com/Vijaykv5/SnapGrid/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/VojislavD/TailwindCSS-Alpine.js-Template**](https://github.com/VojislavD/TailwindCSS-Alpine.js-Template/tree/master/) | 6s | [Data](./data/github.com/VojislavD/TailwindCSS-Alpine.js-Template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Vrukshali-26/wecareforfurs**](https://github.com/Vrukshali-26/wecareforfurs/tree/main/) | 7s | [Data](./data/github.com/Vrukshali-26/wecareforfurs/bWFpbgo/Cg) |
| ✅ | [**github.com/WSU-4110/Degree-Door**](https://github.com/WSU-4110/Degree-Door/tree/main/) | 7s | [Data](./data/github.com/WSU-4110/Degree-Door/bWFpbgo/Cg) |
| ✅ | [**github.com/WTFAcademy/frontend**](https://github.com/WTFAcademy/frontend/tree/main/) | 20s | [Data](./data/github.com/WTFAcademy/frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/WailanTirajoh/nuxt3-admin-template**](https://github.com/WailanTirajoh/nuxt3-admin-template/tree/main/) | 7s | [Data](./data/github.com/WailanTirajoh/nuxt3-admin-template/bWFpbgo/Cg) |
| ✅ | [**github.com/WarsWorld/WarsWorld**](https://github.com/WarsWorld/WarsWorld/tree/main/) | 7s | [Data](./data/github.com/WarsWorld/WarsWorld/bWFpbgo/Cg) |
| ✅ | [**github.com/Wattenberger/svelte-starter**](https://github.com/Wattenberger/svelte-starter/tree/main/) | 7s | [Data](./data/github.com/Wattenberger/svelte-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/Web-Woods/streamline-1.0**](https://github.com/Web-Woods/streamline-1.0/tree/main/frontend) (`frontend`) | 9s | [Data](./data/github.com/Web-Woods/streamline-1.0/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/WebDevStudios/wd_s**](https://github.com/WebDevStudios/wd_s/tree/main/) | 7s | [Data](./data/github.com/WebDevStudios/wd_s/bWFpbgo/Cg) |
| ✅ | [**github.com/WebDeveloper0315/inventory-nextjs-antd**](https://github.com/WebDeveloper0315/inventory-nextjs-antd/tree/master/) | 6s | [Data](./data/github.com/WebDeveloper0315/inventory-nextjs-antd/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/WebPraktikos/universal-resume**](https://github.com/WebPraktikos/universal-resume/tree/master/) | 16s | [Data](./data/github.com/WebPraktikos/universal-resume/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Webisolv/base-twill-project**](https://github.com/Webisolv/base-twill-project/tree/master/) | 17s | [Data](./data/github.com/Webisolv/base-twill-project/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/WillTheDeveloper/StudyPortal**](https://github.com/WillTheDeveloper/StudyPortal/tree/master/) | 9s | [Data](./data/github.com/WillTheDeveloper/StudyPortal/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/WindChat-Link/windchat-extension**](https://github.com/WindChat-Link/windchat-extension/tree/master/) | 7s | [Data](./data/github.com/WindChat-Link/windchat-extension/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Winter22SOFE2720/online-shopping-system**](https://github.com/Winter22SOFE2720/online-shopping-system/tree/main/Code) (`Code`) | 9s | [Data](./data/github.com/Winter22SOFE2720/online-shopping-system/bWFpbgo/Q29kZQo) |
| ✅ | [**github.com/Would-You-Bot/website**](https://github.com/Would-You-Bot/website/tree/main/) | 8s | [Data](./data/github.com/Would-You-Bot/website/bWFpbgo/Cg) |
| ✅ | [**github.com/WuzenLiz/Django-eCommerce-With-Tailwindcss**](https://github.com/WuzenLiz/Django-eCommerce-With-Tailwindcss/tree/main/) | 16s | [Data](./data/github.com/WuzenLiz/Django-eCommerce-With-Tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/XD2Sketch/gpt-react-designer**](https://github.com/XD2Sketch/gpt-react-designer/tree/main/) | 8s | [Data](./data/github.com/XD2Sketch/gpt-react-designer/bWFpbgo/Cg) |
| ✅ | [**github.com/Xammie/mailbook**](https://github.com/Xammie/mailbook/tree/main/) | 8s | [Data](./data/github.com/Xammie/mailbook/bWFpbgo/Cg) |
| ✅ | [**github.com/YALCINCAN/NET6_Vue3Typescript_TaskManagementAPP**](https://github.com/YALCINCAN/NET6_Vue3Typescript_TaskManagementAPP/tree/master/TaskManagementUI) (`TaskManagementUI`) | 5s | [Data](./data/github.com/YALCINCAN/NET6_Vue3Typescript_TaskManagementAPP/bWFzdGVyCg/VGFza01hbmFnZW1lbnRVSQo) |
| ✅ | [**github.com/YKizou/VSCode_Template**](https://github.com/YKizou/VSCode_Template/tree/master/) | 10s | [Data](./data/github.com/YKizou/VSCode_Template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/YOUAHAHAH/react-acro-admin**](https://github.com/YOUAHAHAH/react-acro-admin/tree/main/) | 6s | [Data](./data/github.com/YOUAHAHAH/react-acro-admin/bWFpbgo/Cg) |
| ✅ | [**github.com/YYsuni/react18-json-view**](https://github.com/YYsuni/react18-json-view/tree/main/) | 17s | [Data](./data/github.com/YYsuni/react18-json-view/bWFpbgo/Cg) |
| ✅ | [**github.com/YYsuni/react18-json-view**](https://github.com/YYsuni/react18-json-view/tree/main/website) (`website`) | 6s | [Data](./data/github.com/YYsuni/react18-json-view/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/YanniKouloumbis/next-js-window-ai**](https://github.com/YanniKouloumbis/next-js-window-ai/tree/main/) | 7s | [Data](./data/github.com/YanniKouloumbis/next-js-window-ai/bWFpbgo/Cg) |
| ✅ | [**github.com/YanniKouloumbis/tailwindai**](https://github.com/YanniKouloumbis/tailwindai/tree/main/) | 7s | [Data](./data/github.com/YanniKouloumbis/tailwindai/bWFpbgo/Cg) |
| ✅ | [**github.com/YauhenKavalchuk/tailwindcss**](https://github.com/YauhenKavalchuk/tailwindcss/tree/main/) | 10s | [Data](./data/github.com/YauhenKavalchuk/tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/Yazdun/next-fcc-familyguy**](https://github.com/Yazdun/next-fcc-familyguy/tree/main/) | 7s | [Data](./data/github.com/Yazdun/next-fcc-familyguy/bWFpbgo/Cg) |
| ✅ | [**github.com/Yazdun/react-fcc-forms**](https://github.com/Yazdun/react-fcc-forms/tree/main/) | 6s | [Data](./data/github.com/Yazdun/react-fcc-forms/bWFpbgo/Cg) |
| ✅ | [**github.com/Yazdun/react-ts-fcc-tutorial**](https://github.com/Yazdun/react-ts-fcc-tutorial/tree/main/) | 6s | [Data](./data/github.com/Yazdun/react-ts-fcc-tutorial/bWFpbgo/Cg) |
| ✅ | [**github.com/YeungKC/Hakuba**](https://github.com/YeungKC/Hakuba/tree/master/) | 9s | [Data](./data/github.com/YeungKC/Hakuba/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/Yoast/wordpress-seo**](https://github.com/Yoast/wordpress-seo/tree/trunk/) | 5m 8s | [Data](./data/github.com/Yoast/wordpress-seo/dHJ1bmsK/Cg) |
| ✅ | [**github.com/YodasMyDad/UmbracoBlazor**](https://github.com/YodasMyDad/UmbracoBlazor/tree/master/BlazorExample.Site) (`BlazorExample.Site`) | 9s | [Data](./data/github.com/YodasMyDad/UmbracoBlazor/bWFzdGVyCg/Qmxhem9yRXhhbXBsZS5TaXRlCg) |
| ✅ | [**github.com/YouAskWeBuild/MyLinx**](https://github.com/YouAskWeBuild/MyLinx/tree/main/) | 9s | [Data](./data/github.com/YouAskWeBuild/MyLinx/bWFpbgo/Cg) |
| ✅ | [**github.com/Your-First-Open-Source-Project/main-website**](https://github.com/Your-First-Open-Source-Project/main-website/tree/main/community-website) (`community-website`) | 5s | [Data](./data/github.com/Your-First-Open-Source-Project/main-website/bWFpbgo/Y29tbXVuaXR5LXdlYnNpdGUK) |
| ✅ | [**github.com/YuriDevAT/nikki-my-diary**](https://github.com/YuriDevAT/nikki-my-diary/tree/main/) | 8s | [Data](./data/github.com/YuriDevAT/nikki-my-diary/bWFpbgo/Cg) |
| ✅ | [**github.com/YuriSamp/Fyesta**](https://github.com/YuriSamp/Fyesta/tree/main/) | 8s | [Data](./data/github.com/YuriSamp/Fyesta/bWFpbgo/Cg) |
| ✅ | [**github.com/ZN-GG/ZNGG-Nuxt3**](https://github.com/ZN-GG/ZNGG-Nuxt3/tree/main/) | 23s | [Data](./data/github.com/ZN-GG/ZNGG-Nuxt3/bWFpbgo/Cg) |
| ✅ | [**github.com/ZahraMirzaei/online-shop**](https://github.com/ZahraMirzaei/online-shop/tree/main/) | 9s | [Data](./data/github.com/ZahraMirzaei/online-shop/bWFpbgo/Cg) |
| ✅ | [**github.com/Zakarialabib/Laravel-Ecommerce**](https://github.com/Zakarialabib/Laravel-Ecommerce/tree/main/) | 32s | [Data](./data/github.com/Zakarialabib/Laravel-Ecommerce/bWFpbgo/Cg) |
| ✅ | [**github.com/Zakarialabib/myStockMaster**](https://github.com/Zakarialabib/myStockMaster/tree/master/) | 8s | [Data](./data/github.com/Zakarialabib/myStockMaster/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ZanzyTHEbar/SolidJSTauriMobile**](https://github.com/ZanzyTHEbar/SolidJSTauriMobile/tree/main/) | 7s | [Data](./data/github.com/ZanzyTHEbar/SolidJSTauriMobile/bWFpbgo/Cg) |
| ✅ | [**github.com/ZeekInteractive/wingspan**](https://github.com/ZeekInteractive/wingspan/tree/master/) | 6s | [Data](./data/github.com/ZeekInteractive/wingspan/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/a-rustacean/meent-starter**](https://github.com/a-rustacean/meent-starter/tree/master/) | 6s | [Data](./data/github.com/a-rustacean/meent-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/a11yphant/a11yphant**](https://github.com/a11yphant/a11yphant/tree/develop/services%2Fsite) (`services/site`) | 6s | [Data](./data/github.com/a11yphant/a11yphant/ZGV2ZWxvcAo/c2VydmljZXMvc2l0ZQo) |
| ✅ | [**github.com/a16z-infra/ai-town**](https://github.com/a16z-infra/ai-town/tree/main/) | 6s | [Data](./data/github.com/a16z-infra/ai-town/bWFpbgo/Cg) |
| ✅ | [**github.com/aXenDeveloper/vitnode**](https://github.com/aXenDeveloper/vitnode/tree/canary/docs) (`docs`) | 9s | [Data](./data/github.com/aXenDeveloper/vitnode/Y2FuYXJ5Cg/ZG9jcwo) |
| ✅ | [**github.com/aXenDeveloper/vitnode**](https://github.com/aXenDeveloper/vitnode/tree/canary/frontend) (`frontend`) | 51s | [Data](./data/github.com/aXenDeveloper/vitnode/Y2FuYXJ5Cg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/aacmal/finaki**](https://github.com/aacmal/finaki/tree/main/) | 9s | [Data](./data/github.com/aacmal/finaki/bWFpbgo/Cg) |
| ✅ | [**github.com/aacmal/quran-app-nextjs**](https://github.com/aacmal/quran-app-nextjs/tree/master/) | 7s | [Data](./data/github.com/aacmal/quran-app-nextjs/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/abdllahdev/nimbus-narratives**](https://github.com/abdllahdev/nimbus-narratives/tree/main/) | 22s | [Data](./data/github.com/abdllahdev/nimbus-narratives/bWFpbgo/Cg) |
| ✅ | [**github.com/abehidek/sandbox**](https://github.com/abehidek/sandbox/tree/main/archived%2Fblog-old) (`archived/blog-old`) | 13s | [Data](./data/github.com/abehidek/sandbox/bWFpbgo/YXJjaGl2ZWQvYmxvZy1vbGQK) |
| ✅ | [**github.com/abehidek/sandbox**](https://github.com/abehidek/sandbox/tree/main/archived%2Fpersonal-website) (`archived/personal-website`) | 11s | [Data](./data/github.com/abehidek/sandbox/bWFpbgo/YXJjaGl2ZWQvcGVyc29uYWwtd2Vic2l0ZQo) |
| ✅ | [**github.com/abehidek/sandbox**](https://github.com/abehidek/sandbox/tree/main/learnings%2Flearning-vue) (`learnings/learning-vue`) | 27s | [Data](./data/github.com/abehidek/sandbox/bWFpbgo/bGVhcm5pbmdzL2xlYXJuaW5nLXZ1ZQo) |
| ✅ | [**github.com/abehidek/sandbox**](https://github.com/abehidek/sandbox/tree/main/rocketseat%2Flab-ds) (`rocketseat/lab-ds`) | 12s | [Data](./data/github.com/abehidek/sandbox/bWFpbgo/cm9ja2V0c2VhdC9sYWItZHMK) |
| ✅ | [**github.com/abehidek/sandbox**](https://github.com/abehidek/sandbox/tree/main/t3-stack%2Fauth-credentials-db-session) (`t3-stack/auth-credentials-db-session`) | 12s | [Data](./data/github.com/abehidek/sandbox/bWFpbgo/dDMtc3RhY2svYXV0aC1jcmVkZW50aWFscy1kYi1zZXNzaW9uCg) |
| ✅ | [**github.com/abhidadhaniya23/abhi-portfolio**](https://github.com/abhidadhaniya23/abhi-portfolio/tree/main/) | 43s | [Data](./data/github.com/abhidadhaniya23/abhi-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/abi/screenshot-to-code**](https://github.com/abi/screenshot-to-code/tree/main/frontend) (`frontend`) | 6s | [Data](./data/github.com/abi/screenshot-to-code/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/acm-ucr/acm-hydra**](https://github.com/acm-ucr/acm-hydra/tree/dev/) | 7s | [Data](./data/github.com/acm-ucr/acm-hydra/ZGV2Cg/Cg) |
| ✅ | [**github.com/acm-uic/sparkhacks-2023**](https://github.com/acm-uic/sparkhacks-2023/tree/main/) | 7s | [Data](./data/github.com/acm-uic/sparkhacks-2023/bWFpbgo/Cg) |
| ✅ | [**github.com/acmuta/hackuta2023-site**](https://github.com/acmuta/hackuta2023-site/tree/main/) | 8s | [Data](./data/github.com/acmuta/hackuta2023-site/bWFpbgo/Cg) |
| ✅ | [**github.com/acorn1010/vote**](https://github.com/acorn1010/vote/tree/main/) | 7s | [Data](./data/github.com/acorn1010/vote/bWFpbgo/Cg) |
| ✅ | [**github.com/acornellier/not_even_close**](https://github.com/acornellier/not_even_close/tree/master/) | 9s | [Data](./data/github.com/acornellier/not_even_close/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ad-aures/castopod**](https://github.com/ad-aures/castopod/tree/develop/) | 13s | [Data](./data/github.com/ad-aures/castopod/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/ad-aures/castopod**](https://github.com/ad-aures/castopod/tree/develop/docs) (`docs`) | 8s | [Data](./data/github.com/ad-aures/castopod/ZGV2ZWxvcAo/ZG9jcwo) |
| ✅ | [**github.com/adalbertopc/album-qatar-2022**](https://github.com/adalbertopc/album-qatar-2022/tree/main/) | 8s | [Data](./data/github.com/adalbertopc/album-qatar-2022/bWFpbgo/Cg) |
| ✅ | [**github.com/adanj27/Web-Dev-Hut-Open-Source**](https://github.com/adanj27/Web-Dev-Hut-Open-Source/tree/main/) | 9s | [Data](./data/github.com/adanj27/Web-Dev-Hut-Open-Source/bWFpbgo/Cg) |
| ✅ | [**github.com/adaptui/react-tailwind**](https://github.com/adaptui/react-tailwind/tree/main/) | 7s | [Data](./data/github.com/adaptui/react-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/adarshanand67/ShareMe**](https://github.com/adarshanand67/ShareMe/tree/main/shareme-frontend) (`shareme-frontend`) | 9s | [Data](./data/github.com/adarshanand67/ShareMe/bWFpbgo/c2hhcmVtZS1mcm9udGVuZAo) |
| ✅ | [**github.com/adhamali450/lyrics-card-maker-frontend**](https://github.com/adhamali450/lyrics-card-maker-frontend/tree/master/) | 12s | [Data](./data/github.com/adhamali450/lyrics-card-maker-frontend/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/adisreyaj/show-off**](https://github.com/adisreyaj/show-off/tree/main/) | 6s | [Data](./data/github.com/adisreyaj/show-off/bWFpbgo/Cg) |
| ✅ | [**github.com/adrianhajdin/3D_portfolio**](https://github.com/adrianhajdin/3D_portfolio/tree/main/) | 9s | [Data](./data/github.com/adrianhajdin/3D_portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/adrianhajdin/brainwave**](https://github.com/adrianhajdin/brainwave/tree/main/) | 9s | [Data](./data/github.com/adrianhajdin/brainwave/bWFpbgo/Cg) |
| ✅ | [**github.com/adrianhajdin/nike_landing_page**](https://github.com/adrianhajdin/nike_landing_page/tree/main/) | 10s | [Data](./data/github.com/adrianhajdin/nike_landing_page/bWFpbgo/Cg) |
| ✅ | [**github.com/adrianhajdin/project_hoobank**](https://github.com/adrianhajdin/project_hoobank/tree/main/) | 8s | [Data](./data/github.com/adrianhajdin/project_hoobank/bWFpbgo/Cg) |
| ✅ | [**github.com/adrianhajdin/project_music_player**](https://github.com/adrianhajdin/project_music_player/tree/main/) | 11s | [Data](./data/github.com/adrianhajdin/project_music_player/bWFpbgo/Cg) |
| ✅ | [**github.com/adrianhajdin/travel_ui_ux**](https://github.com/adrianhajdin/travel_ui_ux/tree/main/) | 10s | [Data](./data/github.com/adrianhajdin/travel_ui_ux/bWFpbgo/Cg) |
| ✅ | [**github.com/aeminium-labs/nextjs-solana-starter-kit**](https://github.com/aeminium-labs/nextjs-solana-starter-kit/tree/main/) | 10s | [Data](./data/github.com/aeminium-labs/nextjs-solana-starter-kit/bWFpbgo/Cg) |
| ✅ | [**github.com/afetcan/afetcan**](https://github.com/afetcan/afetcan/tree/main/) | 44s | [Data](./data/github.com/afetcan/afetcan/bWFpbgo/Cg) |
| ✅ | [**github.com/afi-dev/Termsteel**](https://github.com/afi-dev/Termsteel/tree/main/) | 10s | [Data](./data/github.com/afi-dev/Termsteel/bWFpbgo/Cg) |
| ❌ | [**github.com/agi-merge/waggle-dance**](https://github.com/agi-merge/waggle-dance/tree/main/apps%2Fnextjs) (`apps/nextjs`) | *n/a* | [Data](./data/github.com/agi-merge/waggle-dance/bWFpbgo/YXBwcy9uZXh0anMK) |
| ✅ | [**github.com/agmmnn/tauri-ui**](https://github.com/agmmnn/tauri-ui/tree/master/templates%2Fnext) (`templates/next`) | 11s | [Data](./data/github.com/agmmnn/tauri-ui/bWFzdGVyCg/dGVtcGxhdGVzL25leHQK) |
| ✅ | [**github.com/agmmnn/tauri-ui**](https://github.com/agmmnn/tauri-ui/tree/master/templates%2Fsveltekit) (`templates/sveltekit`) | 10s | [Data](./data/github.com/agmmnn/tauri-ui/bWFzdGVyCg/dGVtcGxhdGVzL3N2ZWx0ZWtpdAo) |
| ✅ | [**github.com/agmmnn/tauri-ui**](https://github.com/agmmnn/tauri-ui/tree/master/templates%2Fvite) (`templates/vite`) | 9s | [Data](./data/github.com/agmmnn/tauri-ui/bWFzdGVyCg/dGVtcGxhdGVzL3ZpdGUK) |
| ✅ | [**github.com/agneym/svelte-tailwind-snowpack**](https://github.com/agneym/svelte-tailwind-snowpack/tree/master/) | 7s | [Data](./data/github.com/agneym/svelte-tailwind-snowpack/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/agung2001/agung2001.github.io**](https://github.com/agung2001/agung2001.github.io/tree/develop/) | 7s | [Data](./data/github.com/agung2001/agung2001.github.io/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/ahmedjsofficial/nike-store-jsstack**](https://github.com/ahmedjsofficial/nike-store-jsstack/tree/master/) | 6s | [Data](./data/github.com/ahmedjsofficial/nike-store-jsstack/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/ahmetson/nft-bridge**](https://github.com/ahmetson/nft-bridge/tree/main/packages%2Fnextjs) (`packages/nextjs`) | *n/a* | [Data](./data/github.com/ahmetson/nft-bridge/bWFpbgo/cGFja2FnZXMvbmV4dGpzCg) |
| ✅ | [**github.com/aitu-dk/webpage**](https://github.com/aitu-dk/webpage/tree/main/) | 12s | [Data](./data/github.com/aitu-dk/webpage/bWFpbgo/Cg) |
| ✅ | [**github.com/ajomuch92/vue-tailwind-elements**](https://github.com/ajomuch92/vue-tailwind-elements/tree/main/) | 9s | [Data](./data/github.com/ajomuch92/vue-tailwind-elements/bWFpbgo/Cg) |
| ✅ | [**github.com/akaunting/akaunting**](https://github.com/akaunting/akaunting/tree/master/) | 7m 41s | [Data](./data/github.com/akaunting/akaunting/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/akiarostami/sveltekit-tailwind-blog-starter**](https://github.com/akiarostami/sveltekit-tailwind-blog-starter/tree/master/) | 10s | [Data](./data/github.com/akiarostami/sveltekit-tailwind-blog-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/alanaberdeen/AIDA**](https://github.com/alanaberdeen/AIDA/tree/master/) | 4s | [Data](./data/github.com/alanaberdeen/AIDA/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/alanrsoares/ts-mines**](https://github.com/alanrsoares/ts-mines/tree/master/) | 8s | [Data](./data/github.com/alanrsoares/ts-mines/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/alazyartist/tricking-3d**](https://github.com/alazyartist/tricking-3d/tree/master/frontend) (`frontend`) | *n/a* | [Data](./data/github.com/alazyartist/tricking-3d/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/albeniskerqeli10/react-social-network-v1**](https://github.com/albeniskerqeli10/react-social-network-v1/tree/master/client) (`client`) | 8s | [Data](./data/github.com/albeniskerqeli10/react-social-network-v1/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/albingroen/prismabuilder.io**](https://github.com/albingroen/prismabuilder.io/tree/main/) | 5s | [Data](./data/github.com/albingroen/prismabuilder.io/bWFpbgo/Cg) |
| ✅ | [**github.com/albingroen/react-cmdk**](https://github.com/albingroen/react-cmdk/tree/main/) | 10s | [Data](./data/github.com/albingroen/react-cmdk/bWFpbgo/Cg) |
| ❌ | [**github.com/alec-c4/ks-rails-tailwind**](https://github.com/alec-c4/ks-rails-tailwind/tree/master/) | *n/a* | [Data](./data/github.com/alec-c4/ks-rails-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/alecchendev/spotify-refresh-token**](https://github.com/alecchendev/spotify-refresh-token/tree/main/) | 9s | [Data](./data/github.com/alecchendev/spotify-refresh-token/bWFpbgo/Cg) |
| ✅ | [**github.com/aleksilassila/reiverr**](https://github.com/aleksilassila/reiverr/tree/master/) | 6s | [Data](./data/github.com/aleksilassila/reiverr/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/alexcarpenter/alexcarpenter.me**](https://github.com/alexcarpenter/alexcarpenter.me/tree/main/) | 18s | [Data](./data/github.com/alexcarpenter/alexcarpenter.me/bWFpbgo/Cg) |
| ✅ | [**github.com/alexcarpenter/nextjs-mdx-blog-theme**](https://github.com/alexcarpenter/nextjs-mdx-blog-theme/tree/main/) | 6s | [Data](./data/github.com/alexcarpenter/nextjs-mdx-blog-theme/bWFpbgo/Cg) |
| ✅ | [**github.com/alexpate/www**](https://github.com/alexpate/www/tree/main/) | 7s | [Data](./data/github.com/alexpate/www/bWFpbgo/Cg) |
| ✅ | [**github.com/alhacen/alhacen.github.io**](https://github.com/alhacen/alhacen.github.io/tree/main/) | 10s | [Data](./data/github.com/alhacen/alhacen.github.io/bWFpbgo/Cg) |
| ❌ | [**github.com/alii/builderhacks-season-one**](https://github.com/alii/builderhacks-season-one/tree/master/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/alii/builderhacks-season-one/bWFzdGVyCg/YXBwcy93ZWIK) |
| ✅ | [**github.com/alimranahmed/LaraBlog**](https://github.com/alimranahmed/LaraBlog/tree/main/) | 9s | [Data](./data/github.com/alimranahmed/LaraBlog/bWFpbgo/Cg) |
| ✅ | [**github.com/alissanguyen/alissanguyen-dot-dev**](https://github.com/alissanguyen/alissanguyen-dot-dev/tree/main/) | 6s | [Data](./data/github.com/alissanguyen/alissanguyen-dot-dev/bWFpbgo/Cg) |
| ✅ | [**github.com/allejo/json-reshaper**](https://github.com/allejo/json-reshaper/tree/main/) | 4s | [Data](./data/github.com/allejo/json-reshaper/bWFpbgo/Cg) |
| ✅ | [**github.com/ally-ui/ally-ui**](https://github.com/ally-ui/ally-ui/tree/main/website) (`website`) | 10s | [Data](./data/github.com/ally-ui/ally-ui/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/altankurt/time-tracker**](https://github.com/altankurt/time-tracker/tree/main/) | 6s | [Data](./data/github.com/altankurt/time-tracker/bWFpbgo/Cg) |
| ✅ | [**github.com/alveusgg/alveusgg**](https://github.com/alveusgg/alveusgg/tree/main/apps%2Fwebsite) (`apps/website`) | 41s | [Data](./data/github.com/alveusgg/alveusgg/bWFpbgo/YXBwcy93ZWJzaXRlCg) |
| ✅ | [**github.com/amalsony/universalnotes**](https://github.com/amalsony/universalnotes/tree/main/) | 9s | [Data](./data/github.com/amalsony/universalnotes/bWFpbgo/Cg) |
| ✅ | [**github.com/amanjaiman1/Product_3D**](https://github.com/amanjaiman1/Product_3D/tree/main/) | 10s | [Data](./data/github.com/amanjaiman1/Product_3D/bWFpbgo/Cg) |
| ✅ | [**github.com/ameerdhi7/react-tailwind-starter-template**](https://github.com/ameerdhi7/react-tailwind-starter-template/tree/master/) | 10s | [Data](./data/github.com/ameerdhi7/react-tailwind-starter-template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/aminesmkhani/aminpanel**](https://github.com/aminesmkhani/aminpanel/tree/main/) | 8s | [Data](./data/github.com/aminesmkhani/aminpanel/bWFpbgo/Cg) |
| ✅ | [**github.com/amir20/dozzle**](https://github.com/amir20/dozzle/tree/master/) | 16s | [Data](./data/github.com/amir20/dozzle/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/amitmerchant1990/linksnatch**](https://github.com/amitmerchant1990/linksnatch/tree/main/) | 6s | [Data](./data/github.com/amitmerchant1990/linksnatch/bWFpbgo/Cg) |
| ✅ | [**github.com/amplication/amplication-site**](https://github.com/amplication/amplication-site/tree/main/) | 8s | [Data](./data/github.com/amplication/amplication-site/bWFpbgo/Cg) |
| ✅ | [**github.com/ampodo/portfolio-tailwind**](https://github.com/ampodo/portfolio-tailwind/tree/main/) | 10s | [Data](./data/github.com/ampodo/portfolio-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/andrasbacsai/serverlesshorrors.com**](https://github.com/andrasbacsai/serverlesshorrors.com/tree/main/) | 26s | [Data](./data/github.com/andrasbacsai/serverlesshorrors.com/bWFpbgo/Cg) |
| ✅ | [**github.com/andre-nk/personal-portfolio**](https://github.com/andre-nk/personal-portfolio/tree/main/) | 5s | [Data](./data/github.com/andre-nk/personal-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/andrewbrey/wael**](https://github.com/andrewbrey/wael/tree/main/) | 7s | [Data](./data/github.com/andrewbrey/wael/bWFpbgo/Cg) |
| ✅ | [**github.com/angeldev96/tailwind-aspdotnet**](https://github.com/angeldev96/tailwind-aspdotnet/tree/master/WebApplication1) (`WebApplication1`) | 8s | [Data](./data/github.com/angeldev96/tailwind-aspdotnet/bWFzdGVyCg/V2ViQXBwbGljYXRpb24xCg) |
| ✅ | [**github.com/angelhodar/angelhodar.com**](https://github.com/angelhodar/angelhodar.com/tree/main/) | 24s | [Data](./data/github.com/angelhodar/angelhodar.com/bWFpbgo/Cg) |
| ✅ | [**github.com/angellialkuino/fish-website**](https://github.com/angellialkuino/fish-website/tree/main/) | 11s | [Data](./data/github.com/angellialkuino/fish-website/bWFpbgo/Cg) |
| ✅ | [**github.com/anhsirk0/slider-login-signup**](https://github.com/anhsirk0/slider-login-signup/tree/master/) | 10s | [Data](./data/github.com/anhsirk0/slider-login-signup/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/anhsirk0/whatsapp-svelte**](https://github.com/anhsirk0/whatsapp-svelte/tree/master/) | 10s | [Data](./data/github.com/anhsirk0/whatsapp-svelte/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ani1609/Spendwise**](https://github.com/ani1609/Spendwise/tree/main/client) (`client`) | 6s | [Data](./data/github.com/ani1609/Spendwise/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/anibalsanchez/XT-Tailwind-for-Joomla**](https://github.com/anibalsanchez/XT-Tailwind-for-Joomla/tree/master/template) (`template`) | 6s | [Data](./data/github.com/anibalsanchez/XT-Tailwind-for-Joomla/bWFzdGVyCg/dGVtcGxhdGUK) |
| ✅ | [**github.com/animotionjs/animotion**](https://github.com/animotionjs/animotion/tree/main/packages%2Fanimotion) (`packages/animotion`) | 31s | [Data](./data/github.com/animotionjs/animotion/bWFpbgo/cGFja2FnZXMvYW5pbW90aW9uCg) |
| ✅ | [**github.com/animotionjs/animotion**](https://github.com/animotionjs/animotion/tree/main/packages%2Fdocs) (`packages/docs`) | 17s | [Data](./data/github.com/animotionjs/animotion/bWFpbgo/cGFja2FnZXMvZG9jcwo) |
| ✅ | [**github.com/anisAronno/multipurpose-admin-panel-boilerplate**](https://github.com/anisAronno/multipurpose-admin-panel-boilerplate/tree/develop/) | 6s | [Data](./data/github.com/anisAronno/multipurpose-admin-panel-boilerplate/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/anmode/grabtern-frontend**](https://github.com/anmode/grabtern-frontend/tree/develop/) | 8s | [Data](./data/github.com/anmode/grabtern-frontend/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/anonaddy/anonaddy**](https://github.com/anonaddy/anonaddy/tree/master/) | 5s | [Data](./data/github.com/anonaddy/anonaddy/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ansonlichtfuss/remix-tailwind-threejs-template**](https://github.com/ansonlichtfuss/remix-tailwind-threejs-template/tree/main/) | 8s | [Data](./data/github.com/ansonlichtfuss/remix-tailwind-threejs-template/bWFpbgo/Cg) |
| ✅ | [**github.com/anthonyshew/i18n-demo**](https://github.com/anthonyshew/i18n-demo/tree/main/) | 6s | [Data](./data/github.com/anthonyshew/i18n-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/anup-a/svgwave**](https://github.com/anup-a/svgwave/tree/main/) | 11s | [Data](./data/github.com/anup-a/svgwave/bWFpbgo/Cg) |
| ✅ | [**github.com/anuragts/codeAI**](https://github.com/anuragts/codeAI/tree/main/) | 11s | [Data](./data/github.com/anuragts/codeAI/bWFpbgo/Cg) |
| ✅ | [**github.com/any-tdf/stdf**](https://github.com/any-tdf/stdf/tree/main/demo) (`demo`) | 16s | [Data](./data/github.com/any-tdf/stdf/bWFpbgo/ZGVtbwo) |
| ✅ | [**github.com/apivideo/api.video-progressive-upload-demo**](https://github.com/apivideo/api.video-progressive-upload-demo/tree/main/) | 10s | [Data](./data/github.com/apivideo/api.video-progressive-upload-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/appcket/appcket-org**](https://github.com/appcket/appcket-org/tree/main/app) (`app`) | 9s | [Data](./data/github.com/appcket/appcket-org/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/appcket/appcket-org**](https://github.com/appcket/appcket-org/tree/main/marketing) (`marketing`) | 37s | [Data](./data/github.com/appcket/appcket-org/bWFpbgo/bWFya2V0aW5nCg) |
| ✅ | [**github.com/appoly/mail-web**](https://github.com/appoly/mail-web/tree/master/) | 7s | [Data](./data/github.com/appoly/mail-web/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/ardatan/graphql-mesh**](https://github.com/ardatan/graphql-mesh/tree/master/website) (`website`) | *n/a* | [Data](./data/github.com/ardatan/graphql-mesh/bWFzdGVyCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/ardatan/graphql-tools**](https://github.com/ardatan/graphql-tools/tree/master/website) (`website`) | 18s | [Data](./data/github.com/ardatan/graphql-tools/bWFzdGVyCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/aridsm/tasks-app**](https://github.com/aridsm/tasks-app/tree/master/) | 12s | [Data](./data/github.com/aridsm/tasks-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/arifbudimanar/lali**](https://github.com/arifbudimanar/lali/tree/main/) | 7s | [Data](./data/github.com/arifbudimanar/lali/bWFpbgo/Cg) |
| ❌ | [**github.com/arifikhsan/batu-gunting-kertas-nuxt**](https://github.com/arifikhsan/batu-gunting-kertas-nuxt/tree/master/) | *n/a* | [Data](./data/github.com/arifikhsan/batu-gunting-kertas-nuxt/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/arkemishub/form**](https://github.com/arkemishub/form/tree/main/apps%2Fdocs) (`apps/docs`) | 42s | [Data](./data/github.com/arkemishub/form/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/arnvgh/www**](https://github.com/arnvgh/www/tree/main/) | 10s | [Data](./data/github.com/arnvgh/www/bWFpbgo/Cg) |
| ✅ | [**github.com/arshad-yaseen/apple-airpods-ui**](https://github.com/arshad-yaseen/apple-airpods-ui/tree/main/) | 9s | [Data](./data/github.com/arshad-yaseen/apple-airpods-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/artemadams/atlas-search-mongoflix**](https://github.com/artemadams/atlas-search-mongoflix/tree/master/) | 9s | [Data](./data/github.com/artemadams/atlas-search-mongoflix/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/aryamankha/airbnb-clone**](https://github.com/aryamankha/airbnb-clone/tree/main/) | 5s | [Data](./data/github.com/aryamankha/airbnb-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/aryankashyap7/CheatSheets-for-Developers**](https://github.com/aryankashyap7/CheatSheets-for-Developers/tree/main/) | 7s | [Data](./data/github.com/aryankashyap7/CheatSheets-for-Developers/bWFpbgo/Cg) |
| ✅ | [**github.com/ashishlotake/ashishlotake.com**](https://github.com/ashishlotake/ashishlotake.com/tree/main/) | 9s | [Data](./data/github.com/ashishlotake/ashishlotake.com/bWFpbgo/Cg) |
| ✅ | [**github.com/ashrafchowdury/talknova**](https://github.com/ashrafchowdury/talknova/tree/main/) | 7s | [Data](./data/github.com/ashrafchowdury/talknova/bWFpbgo/Cg) |
| ✅ | [**github.com/ashswap/ash-interface**](https://github.com/ashswap/ash-interface/tree/testnet/) | 10s | [Data](./data/github.com/ashswap/ash-interface/dGVzdG5ldAo/Cg) |
| ✅ | [**github.com/astral-sh/ruff**](https://github.com/astral-sh/ruff/tree/main/playground) (`playground`) | 7s | [Data](./data/github.com/astral-sh/ruff/bWFpbgo/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/astridlol/Thorn**](https://github.com/astridlol/Thorn/tree/main/) | 7s | [Data](./data/github.com/astridlol/Thorn/bWFpbgo/Cg) |
| ✅ | [**github.com/astro-reactive/astro-reactive**](https://github.com/astro-reactive/astro-reactive/tree/main/apps%2Flanding-page) (`apps/landing-page`) | 37s | [Data](./data/github.com/astro-reactive/astro-reactive/bWFpbgo/YXBwcy9sYW5kaW5nLXBhZ2UK) |
| ❌ | [**github.com/asvny/building-realworld-user-interfaces-using-tailwind**](https://github.com/asvny/building-realworld-user-interfaces-using-tailwind/tree/master/) | *n/a* | [Data](./data/github.com/asvny/building-realworld-user-interfaces-using-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/asyncapi/website**](https://github.com/asyncapi/website/tree/master/) | 10s | [Data](./data/github.com/asyncapi/website/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/auguwu/floofy.dev**](https://github.com/auguwu/floofy.dev/tree/master/) | 24s | [Data](./data/github.com/auguwu/floofy.dev/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/avicoder/ShareTOTP**](https://github.com/avicoder/ShareTOTP/tree/main/) | 9s | [Data](./data/github.com/avicoder/ShareTOTP/bWFpbgo/Cg) |
| ✅ | [**github.com/avidtemplates/tailbreeze**](https://github.com/avidtemplates/tailbreeze/tree/main/) | 6s | [Data](./data/github.com/avidtemplates/tailbreeze/bWFpbgo/Cg) |
| ✅ | [**github.com/avie-dev/spaceslounge**](https://github.com/avie-dev/spaceslounge/tree/main/) | 8s | [Data](./data/github.com/avie-dev/spaceslounge/bWFpbgo/Cg) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Baihaki-Al-Biruni) (`Baihaki-Al-Biruni`) | 38s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/QmFpaGFraS1BbC1CaXJ1bmkK) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Dhiraj%20Kumar) (`Dhiraj Kumar`) | 33s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/RGhpcmFqIEt1bWFyCg) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Dhruv%20Arora's%20Portfolio) (`Dhruv Arora's Portfolio`) | 33s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/RGhydXYgQXJvcmEncyBQb3J0Zm9saW8K) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Ilyas_A_Yusuf) (`Ilyas_A_Yusuf`) | 36s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/SWx5YXNfQV9ZdXN1Zgo) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Jitu%20Nayak) (`Jitu Nayak`) | 33s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/Sml0dSBOYXlhawo) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Rachit%20Singhal) (`Rachit Singhal`) | 33s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/UmFjaGl0IFNpbmdoYWwK) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Shubham%20Kumar) (`Shubham Kumar`) | 32s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/U2h1YmhhbSBLdW1hcgo) |
| ✅ | [**github.com/avinash201199/Portfolio-Collection**](https://github.com/avinash201199/Portfolio-Collection/tree/main/Yash-Parwani-Portfolio) (`Yash-Parwani-Portfolio`) | 36s | [Data](./data/github.com/avinash201199/Portfolio-Collection/bWFpbgo/WWFzaC1QYXJ3YW5pLVBvcnRmb2xpbwo) |
| ✅ | [**github.com/avneesh0612/portfolio**](https://github.com/avneesh0612/portfolio/tree/main/) | 7s | [Data](./data/github.com/avneesh0612/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/awcodes/filament-tiptap-editor**](https://github.com/awcodes/filament-tiptap-editor/tree/3.x/) | 8s | [Data](./data/github.com/awcodes/filament-tiptap-editor/My54Cg/Cg) |
| ✅ | [**github.com/aymaneMx/nuxt-portfolio-dev**](https://github.com/aymaneMx/nuxt-portfolio-dev/tree/main/) | 23s | [Data](./data/github.com/aymaneMx/nuxt-portfolio-dev/bWFpbgo/Cg) |
| ✅ | [**github.com/aynp/portfolio**](https://github.com/aynp/portfolio/tree/main/) | 6s | [Data](./data/github.com/aynp/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/ayush013/folio**](https://github.com/ayush013/folio/tree/master/) | 9s | [Data](./data/github.com/ayush013/folio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/azkazikna/libraryJGU**](https://github.com/azkazikna/libraryJGU/tree/main/) | 4s | [Data](./data/github.com/azkazikna/libraryJGU/bWFpbgo/Cg) |
| ✅ | [**github.com/backframe/backframe.js**](https://github.com/backframe/backframe.js/tree/main/docs) (`docs`) | 2m 11s | [Data](./data/github.com/backframe/backframe.js/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/backframe/backframe.js**](https://github.com/backframe/backframe.js/tree/main/packages%2Fbackframe-admin) (`packages/backframe-admin`) | 2m 34s | [Data](./data/github.com/backframe/backframe.js/bWFpbgo/cGFja2FnZXMvYmFja2ZyYW1lLWFkbWluCg) |
| ✅ | [**github.com/backmeupplz/todorant-localizer**](https://github.com/backmeupplz/todorant-localizer/tree/main/) | 12s | [Data](./data/github.com/backmeupplz/todorant-localizer/bWFpbgo/Cg) |
| ✅ | [**github.com/bacqueyrisses/nextai**](https://github.com/bacqueyrisses/nextai/tree/main/) | 6s | [Data](./data/github.com/bacqueyrisses/nextai/bWFpbgo/Cg) |
| ❌ | [**github.com/badaoui220/screenia**](https://github.com/badaoui220/screenia/tree/main/) | *n/a* | [Data](./data/github.com/badaoui220/screenia/bWFpbgo/Cg) |
| ✅ | [**github.com/badass-courses/course-builder**](https://github.com/badass-courses/course-builder/tree/main/apps%2Fcourse-builder-web) (`apps/course-builder-web`) | 53s | [Data](./data/github.com/badass-courses/course-builder/bWFpbgo/YXBwcy9jb3Vyc2UtYnVpbGRlci13ZWIK) |
| ✅ | [**github.com/badass-courses/course-builder**](https://github.com/badass-courses/course-builder/tree/main/docs) (`docs`) | 1m 46s | [Data](./data/github.com/badass-courses/course-builder/bWFpbgo/ZG9jcwo) |
| ❌ | [**github.com/badass-courses/course-builder**](https://github.com/badass-courses/course-builder/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/badass-courses/course-builder/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/badlogic/skychat**](https://github.com/badlogic/skychat/tree/main/) | 8s | [Data](./data/github.com/badlogic/skychat/bWFpbgo/Cg) |
| ✅ | [**github.com/ballerine-io/ballerine**](https://github.com/ballerine-io/ballerine/tree/dev/apps%2Fbackoffice-v2) (`apps/backoffice-v2`) | 2m 30s | [Data](./data/github.com/ballerine-io/ballerine/ZGV2Cg/YXBwcy9iYWNrb2ZmaWNlLXYyCg) |
| ✅ | [**github.com/ballerine-io/ballerine**](https://github.com/ballerine-io/ballerine/tree/dev/apps%2Fkyb-app) (`apps/kyb-app`) | 2m 19s | [Data](./data/github.com/ballerine-io/ballerine/ZGV2Cg/YXBwcy9reWItYXBwCg) |
| ✅ | [**github.com/ballerine-io/ballerine**](https://github.com/ballerine-io/ballerine/tree/dev/apps%2Fworkflows-dashboard) (`apps/workflows-dashboard`) | 2m 9s | [Data](./data/github.com/ballerine-io/ballerine/ZGV2Cg/YXBwcy93b3JrZmxvd3MtZGFzaGJvYXJkCg) |
| ❌ | [**github.com/ballerine-io/ballerine**](https://github.com/ballerine-io/ballerine/tree/dev/packages%2Freact-pdf-toolkit) (`packages/react-pdf-toolkit`) | *n/a* | [Data](./data/github.com/ballerine-io/ballerine/ZGV2Cg/cGFja2FnZXMvcmVhY3QtcGRmLXRvb2xraXQK) |
| ✅ | [**github.com/ballerine-io/ballerine**](https://github.com/ballerine-io/ballerine/tree/dev/packages%2Fui) (`packages/ui`) | 3m 20s | [Data](./data/github.com/ballerine-io/ballerine/ZGV2Cg/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/ballerine-io/ballerine**](https://github.com/ballerine-io/ballerine/tree/dev/websites%2Fdocs) (`websites/docs`) | 3m 11s | [Data](./data/github.com/ballerine-io/ballerine/ZGV2Cg/d2Vic2l0ZXMvZG9jcwo) |
| ✅ | [**github.com/baoliay2008/lccn_predictor**](https://github.com/baoliay2008/lccn_predictor/tree/main/client) (`client`) | 6s | [Data](./data/github.com/baoliay2008/lccn_predictor/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/barbarbar338/webpage**](https://github.com/barbarbar338/webpage/tree/live/) | 11s | [Data](./data/github.com/barbarbar338/webpage/bGl2ZQo/Cg) |
| ✅ | [**github.com/barelyhuman/mark**](https://github.com/barelyhuman/mark/tree/pro/) | 6s | [Data](./data/github.com/barelyhuman/mark/cHJvCg/Cg) |
| ✅ | [**github.com/barryvanveen/blog**](https://github.com/barryvanveen/blog/tree/master/) | 10s | [Data](./data/github.com/barryvanveen/blog/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/barvian/fluid-tailwind**](https://github.com/barvian/fluid-tailwind/tree/main/site) (`site`) | *n/a* | [Data](./data/github.com/barvian/fluid-tailwind/bWFpbgo/c2l0ZQo) |
| ✅ | [**github.com/bazuel/notest**](https://github.com/bazuel/notest/tree/main/packages%2Fnotest-extension) (`packages/notest-extension`) | 8s | [Data](./data/github.com/bazuel/notest/bWFpbgo/cGFja2FnZXMvbm90ZXN0LWV4dGVuc2lvbgo) |
| ✅ | [**github.com/bazuel/notest**](https://github.com/bazuel/notest/tree/main/packages%2Fnotest-extension-widget) (`packages/notest-extension-widget`) | 7s | [Data](./data/github.com/bazuel/notest/bWFpbgo/cGFja2FnZXMvbm90ZXN0LWV4dGVuc2lvbi13aWRnZXQK) |
| ✅ | [**github.com/bazuel/notest**](https://github.com/bazuel/notest/tree/main/packages%2Fnotest-frontend) (`packages/notest-frontend`) | 7s | [Data](./data/github.com/bazuel/notest/bWFpbgo/cGFja2FnZXMvbm90ZXN0LWZyb250ZW5kCg) |
| ✅ | [**github.com/bazuel/notest**](https://github.com/bazuel/notest/tree/main/packages%2Fnotest.io) (`packages/notest.io`) | 7s | [Data](./data/github.com/bazuel/notest/bWFpbgo/cGFja2FnZXMvbm90ZXN0LmlvCg) |
| ✅ | [**github.com/bbulakh/tailwind-ecommerce**](https://github.com/bbulakh/tailwind-ecommerce/tree/2.x/) | 9s | [Data](./data/github.com/bbulakh/tailwind-ecommerce/Mi54Cg/Cg) |
| ✅ | [**github.com/bclswl0827/ChatGemini**](https://github.com/bclswl0827/ChatGemini/tree/master/) | 13s | [Data](./data/github.com/bclswl0827/ChatGemini/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bdcorps/stripe-gen-ui**](https://github.com/bdcorps/stripe-gen-ui/tree/main/) | 7s | [Data](./data/github.com/bdcorps/stripe-gen-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/bdsqqq/psykip**](https://github.com/bdsqqq/psykip/tree/master/) | 21s | [Data](./data/github.com/bdsqqq/psykip/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/beerandcodeteam/adoteumdev**](https://github.com/beerandcodeteam/adoteumdev/tree/main/) | 9s | [Data](./data/github.com/beerandcodeteam/adoteumdev/bWFpbgo/Cg) |
| ✅ | [**github.com/belajarpythoncom/belajarpython.com**](https://github.com/belajarpythoncom/belajarpython.com/tree/master/) | 5s | [Data](./data/github.com/belajarpythoncom/belajarpython.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bennymi/presveltation**](https://github.com/bennymi/presveltation/tree/main/) | 7s | [Data](./data/github.com/bennymi/presveltation/bWFpbgo/Cg) |
| ✅ | [**github.com/bentzibentz/tailwindcss-animate.css**](https://github.com/bentzibentz/tailwindcss-animate.css/tree/master/) | 8s | [Data](./data/github.com/bentzibentz/tailwindcss-animate.css/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bep/hugo-starter-tailwind-basic**](https://github.com/bep/hugo-starter-tailwind-basic/tree/master/) | 8s | [Data](./data/github.com/bep/hugo-starter-tailwind-basic/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bepyan/dnd-playground**](https://github.com/bepyan/dnd-playground/tree/main/) | 9s | [Data](./data/github.com/bepyan/dnd-playground/bWFpbgo/Cg) |
| ✅ | [**github.com/bernaferrari/FigmaToCode**](https://github.com/bernaferrari/FigmaToCode/tree/main/apps%2Fdebug) (`apps/debug`) | 29s | [Data](./data/github.com/bernaferrari/FigmaToCode/bWFpbgo/YXBwcy9kZWJ1Zwo) |
| ✅ | [**github.com/bernaferrari/FigmaToCode**](https://github.com/bernaferrari/FigmaToCode/tree/main/apps%2Fplugin) (`apps/plugin`) | 30s | [Data](./data/github.com/bernaferrari/FigmaToCode/bWFpbgo/YXBwcy9wbHVnaW4K) |
| ✅ | [**github.com/bernaferrari/FigmaToCode**](https://github.com/bernaferrari/FigmaToCode/tree/main/packages%2Fplugin-ui) (`packages/plugin-ui`) | 32s | [Data](./data/github.com/bernaferrari/FigmaToCode/bWFpbgo/cGFja2FnZXMvcGx1Z2luLXVpCg) |
| ✅ | [**github.com/beromir/Servas**](https://github.com/beromir/Servas/tree/main/) | 6s | [Data](./data/github.com/beromir/Servas/bWFpbgo/Cg) |
| ✅ | [**github.com/bestmods/bestmods**](https://github.com/bestmods/bestmods/tree/main/) | 10s | [Data](./data/github.com/bestmods/bestmods/bWFpbgo/Cg) |
| ❌ | [**github.com/bhaveshpatel200/vue3-datatable**](https://github.com/bhaveshpatel200/vue3-datatable/tree/main/) | *n/a* | [Data](./data/github.com/bhaveshpatel200/vue3-datatable/bWFpbgo/Cg) |
| ✅ | [**github.com/bible-technology/scribe-scripture-editor**](https://github.com/bible-technology/scribe-scripture-editor/tree/development/) | 11s | [Data](./data/github.com/bible-technology/scribe-scripture-editor/ZGV2ZWxvcG1lbnQK/Cg) |
| ✅ | [**github.com/bigbluebutton/bigbluebutton**](https://github.com/bigbluebutton/bigbluebutton/tree/develop/bbb-learning-dashboard) (`bbb-learning-dashboard`) | 12s | [Data](./data/github.com/bigbluebutton/bigbluebutton/ZGV2ZWxvcAo/YmJiLWxlYXJuaW5nLWRhc2hib2FyZAo) |
| ✅ | [**github.com/bigcommerce/point-of-sale-foundation**](https://github.com/bigcommerce/point-of-sale-foundation/tree/main/) | 9s | [Data](./data/github.com/bigcommerce/point-of-sale-foundation/bWFpbgo/Cg) |
| ✅ | [**github.com/bimsina/fluttertemplates.dev**](https://github.com/bimsina/fluttertemplates.dev/tree/master/) | 8s | [Data](./data/github.com/bimsina/fluttertemplates.dev/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bitcoin-computer/monorepo**](https://github.com/bitcoin-computer/monorepo/tree/main/packages%2FTBC404-app) (`packages/TBC404-app`) | 7s | [Data](./data/github.com/bitcoin-computer/monorepo/bWFpbgo/cGFja2FnZXMvVEJDNDA0LWFwcAo) |
| ✅ | [**github.com/bitcoin-computer/monorepo**](https://github.com/bitcoin-computer/monorepo/tree/main/packages%2Fcra-template) (`packages/cra-template`) | 6s | [Data](./data/github.com/bitcoin-computer/monorepo/bWFpbgo/cGFja2FnZXMvY3JhLXRlbXBsYXRlCg) |
| ✅ | [**github.com/bitcoin-computer/monorepo**](https://github.com/bitcoin-computer/monorepo/tree/main/packages%2Fexplorer) (`packages/explorer`) | 8s | [Data](./data/github.com/bitcoin-computer/monorepo/bWFpbgo/cGFja2FnZXMvZXhwbG9yZXIK) |
| ✅ | [**github.com/bitcoin-computer/monorepo**](https://github.com/bitcoin-computer/monorepo/tree/main/packages%2Fwallet) (`packages/wallet`) | 17s | [Data](./data/github.com/bitcoin-computer/monorepo/bWFpbgo/cGFja2FnZXMvd2FsbGV0Cg) |
| ✅ | [**github.com/bitovi/statistical-software-estimator**](https://github.com/bitovi/statistical-software-estimator/tree/main/) | 4s | [Data](./data/github.com/bitovi/statistical-software-estimator/bWFpbgo/Cg) |
| ❌ | [**github.com/bitwarden/clients**](https://github.com/bitwarden/clients/tree/main/) | *n/a* | [Data](./data/github.com/bitwarden/clients/bWFpbgo/Cg) |
| ✅ | [**github.com/bl33h/whosbl33h**](https://github.com/bl33h/whosbl33h/tree/main/) | 8s | [Data](./data/github.com/bl33h/whosbl33h/bWFpbgo/Cg) |
| ✅ | [**github.com/blackgirlbytes/blackgyalbites-nextjs**](https://github.com/blackgirlbytes/blackgyalbites-nextjs/tree/main/) | 9s | [Data](./data/github.com/blackgirlbytes/blackgyalbites-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/blmarquess/Game-Trunfo**](https://github.com/blmarquess/Game-Trunfo/tree/bruno-marques-project-tryunfo/) | 12s | [Data](./data/github.com/blmarquess/Game-Trunfo/YnJ1bm8tbWFycXVlcy1wcm9qZWN0LXRyeXVuZm8K/Cg) |
| ✅ | [**github.com/blonestar/wp-theme-vite-tailwind**](https://github.com/blonestar/wp-theme-vite-tailwind/tree/main/) | 7s | [Data](./data/github.com/blonestar/wp-theme-vite-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/blrchen/azure-catalog**](https://github.com/blrchen/azure-catalog/tree/main/) | 6s | [Data](./data/github.com/blrchen/azure-catalog/bWFpbgo/Cg) |
| ✅ | [**github.com/blrchen/chatgpt-lite**](https://github.com/blrchen/chatgpt-lite/tree/main/) | 8s | [Data](./data/github.com/blrchen/chatgpt-lite/bWFpbgo/Cg) |
| ✅ | [**github.com/bnprtr/go-templ-htmx-template**](https://github.com/bnprtr/go-templ-htmx-template/tree/main/) | 6s | [Data](./data/github.com/bnprtr/go-templ-htmx-template/bWFpbgo/Cg) |
| ✅ | [**github.com/bobthered/tailwindcss-palette-generator**](https://github.com/bobthered/tailwindcss-palette-generator/tree/main/) | 5s | [Data](./data/github.com/bobthered/tailwindcss-palette-generator/bWFpbgo/Cg) |
| ✅ | [**github.com/bodhish/mytemplate.xyz**](https://github.com/bodhish/mytemplate.xyz/tree/master/) | 10s | [Data](./data/github.com/bodhish/mytemplate.xyz/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bodhish/mytemplate.xyz**](https://github.com/bodhish/mytemplate.xyz/tree/master/packages%2Fmytemplate) (`packages/mytemplate`) | 11s | [Data](./data/github.com/bodhish/mytemplate.xyz/bWFzdGVyCg/cGFja2FnZXMvbXl0ZW1wbGF0ZQo) |
| ✅ | [**github.com/bogdaaamn/minimal-remix-stack**](https://github.com/bogdaaamn/minimal-remix-stack/tree/main/) | 8s | [Data](./data/github.com/bogdaaamn/minimal-remix-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/bolodissenoura/linkesearch**](https://github.com/bolodissenoura/linkesearch/tree/main/) | 8s | [Data](./data/github.com/bolodissenoura/linkesearch/bWFpbgo/Cg) |
| ✅ | [**github.com/bonabrian/snxtw**](https://github.com/bonabrian/snxtw/tree/main/) | 9s | [Data](./data/github.com/bonabrian/snxtw/bWFpbgo/Cg) |
| ✅ | [**github.com/bookshelves-project/bookshelves-front**](https://github.com/bookshelves-project/bookshelves-front/tree/main/) | 9s | [Data](./data/github.com/bookshelves-project/bookshelves-front/bWFpbgo/Cg) |
| ✅ | [**github.com/boting-devs/vibr-website**](https://github.com/boting-devs/vibr-website/tree/master/) | 11s | [Data](./data/github.com/boting-devs/vibr-website/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/boussadjra/vue3-tailwind2**](https://github.com/boussadjra/vue3-tailwind2/tree/main/) | 11s | [Data](./data/github.com/boussadjra/vue3-tailwind2/bWFpbgo/Cg) |
| ✅ | [**github.com/bowencool/blog**](https://github.com/bowencool/blog/tree/main/) | 26s | [Data](./data/github.com/bowencool/blog/bWFpbgo/Cg) |
| ✅ | [**github.com/br4adam/bookmarks**](https://github.com/br4adam/bookmarks/tree/main/) | 7s | [Data](./data/github.com/br4adam/bookmarks/bWFpbgo/Cg) |
| ✅ | [**github.com/braden-w/whispering**](https://github.com/braden-w/whispering/tree/main/apps%2Fbrowser-extension) (`apps/browser-extension`) | 17s | [Data](./data/github.com/braden-w/whispering/bWFpbgo/YXBwcy9icm93c2VyLWV4dGVuc2lvbgo) |
| ✅ | [**github.com/braden-w/whispering**](https://github.com/braden-w/whispering/tree/main/apps%2Fweb-desktop-app) (`apps/web-desktop-app`) | 37s | [Data](./data/github.com/braden-w/whispering/bWFpbgo/YXBwcy93ZWItZGVza3RvcC1hcHAK) |
| ✅ | [**github.com/braden-w/whispering**](https://github.com/braden-w/whispering/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 33s | [Data](./data/github.com/braden-w/whispering/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/bradgarropy/bradgarropy.com**](https://github.com/bradgarropy/bradgarropy.com/tree/main/) | 9s | [Data](./data/github.com/bradgarropy/bradgarropy.com/bWFpbgo/Cg) |
| ✅ | [**github.com/bradp/pears**](https://github.com/bradp/pears/tree/main/) | 12s | [Data](./data/github.com/bradp/pears/bWFpbgo/Cg) |
| ❌ | [**github.com/brainstormforce/custom-fonts**](https://github.com/brainstormforce/custom-fonts/tree/master/admin%2Fdashboard) (`admin/dashboard`) | *n/a* | [Data](./data/github.com/brainstormforce/custom-fonts/bWFzdGVyCg/YWRtaW4vZGFzaGJvYXJkCg) |
| ✅ | [**github.com/brandhaug/full-stack-typescript-monorepo-starter-with-authentication**](https://github.com/brandhaug/full-stack-typescript-monorepo-starter-with-authentication/tree/main/app) (`app`) | 51s | [Data](./data/github.com/brandhaug/full-stack-typescript-monorepo-starter-with-authentication/bWFpbgo/YXBwCg) |
| ❌ | [**github.com/brandhaug/full-stack-typescript-monorepo-starter-with-authentication**](https://github.com/brandhaug/full-stack-typescript-monorepo-starter-with-authentication/tree/main/ui) (`ui`) | *n/a* | [Data](./data/github.com/brandhaug/full-stack-typescript-monorepo-starter-with-authentication/bWFpbgo/dWkK) |
| ✅ | [**github.com/brandonroberts/blog**](https://github.com/brandonroberts/blog/tree/main/) | 8s | [Data](./data/github.com/brandonroberts/blog/bWFpbgo/Cg) |
| ✅ | [**github.com/bratislava/bratislava.sk**](https://github.com/bratislava/bratislava.sk/tree/master/next) (`next`) | 11s | [Data](./data/github.com/bratislava/bratislava.sk/bWFzdGVyCg/bmV4dAo) |
| ❌ | [**github.com/brattonross/windy-radix-palette**](https://github.com/brattonross/windy-radix-palette/tree/main/docs) (`docs`) | *n/a* | [Data](./data/github.com/brattonross/windy-radix-palette/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/braydoncoyer/braydoncoyer.dev**](https://github.com/braydoncoyer/braydoncoyer.dev/tree/v3/) | 7s | [Data](./data/github.com/braydoncoyer/braydoncoyer.dev/djMK/Cg) |
| ❌ | [**github.com/brc-dd/animated-tailwindcss**](https://github.com/brc-dd/animated-tailwindcss/tree/main/) | *n/a* | [Data](./data/github.com/brc-dd/animated-tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/breadthe/seismic**](https://github.com/breadthe/seismic/tree/main/) | 6s | [Data](./data/github.com/breadthe/seismic/bWFpbgo/Cg) |
| ✅ | [**github.com/brenobaptista/plume-dashboard**](https://github.com/brenobaptista/plume-dashboard/tree/main/) | 9s | [Data](./data/github.com/brenobaptista/plume-dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/brianlovin/briOS**](https://github.com/brianlovin/briOS/tree/main/) | 5s | [Data](./data/github.com/brianlovin/briOS/bWFpbgo/Cg) |
| ✅ | [**github.com/brilla-cx/hr-web**](https://github.com/brilla-cx/hr-web/tree/main/) | 7s | [Data](./data/github.com/brilla-cx/hr-web/bWFpbgo/Cg) |
| ✅ | [**github.com/bromberry-games/Inkvestigations**](https://github.com/bromberry-games/Inkvestigations/tree/master/) | 10s | [Data](./data/github.com/bromberry-games/Inkvestigations/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bryanhannes/ameliorated-chat**](https://github.com/bryanhannes/ameliorated-chat/tree/main/) | 6s | [Data](./data/github.com/bryanhannes/ameliorated-chat/bWFpbgo/Cg) |
| ✅ | [**github.com/bryanjenningz/react-duolingo**](https://github.com/bryanjenningz/react-duolingo/tree/master/) | 6s | [Data](./data/github.com/bryanjenningz/react-duolingo/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bryanmylee/svelte-headless-table**](https://github.com/bryanmylee/svelte-headless-table/tree/main/docs) (`docs`) | 7s | [Data](./data/github.com/bryanmylee/svelte-headless-table/bWFpbgo/ZG9jcwo) |
| ❌ | [**github.com/bryantgillespie/nuxt3-directus-starter**](https://github.com/bryantgillespie/nuxt3-directus-starter/tree/main/) | *n/a* | [Data](./data/github.com/bryantgillespie/nuxt3-directus-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/bsoc-bitbyte/resource-sharing**](https://github.com/bsoc-bitbyte/resource-sharing/tree/master/) | 7s | [Data](./data/github.com/bsoc-bitbyte/resource-sharing/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/bullet-train-co/bullet_train**](https://github.com/bullet-train-co/bullet_train/tree/main/) | *n/a* | [Data](./data/github.com/bullet-train-co/bullet_train/bWFpbgo/Cg) |
| ✅ | [**github.com/burhan-syed/WebRoll**](https://github.com/burhan-syed/WebRoll/tree/main/) | 12s | [Data](./data/github.com/burhan-syed/WebRoll/bWFpbgo/Cg) |
| ✅ | [**github.com/burhan-syed/troddit**](https://github.com/burhan-syed/troddit/tree/main/) | 10s | [Data](./data/github.com/burhan-syed/troddit/bWFpbgo/Cg) |
| ✅ | [**github.com/busterthemes/ghost-tailwind-starter**](https://github.com/busterthemes/ghost-tailwind-starter/tree/master/) | 10s | [Data](./data/github.com/busterthemes/ghost-tailwind-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/bwinf-guide/bwinf-guide**](https://github.com/bwinf-guide/bwinf-guide/tree/main/) | 4s | [Data](./data/github.com/bwinf-guide/bwinf-guide/bWFpbgo/Cg) |
| ✅ | [**github.com/byplay-io/byplay-desktop**](https://github.com/byplay-io/byplay-desktop/tree/byplay20/) | 6s | [Data](./data/github.com/byplay-io/byplay-desktop/YnlwbGF5MjAK/Cg) |
| ✅ | [**github.com/bytebase/bytebase**](https://github.com/bytebase/bytebase/tree/main/frontend) (`frontend`) | 19s | [Data](./data/github.com/bytebase/bytebase/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/cake-cutter/cakes.run**](https://github.com/cake-cutter/cakes.run/tree/master/) | 10s | [Data](./data/github.com/cake-cutter/cakes.run/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/calcom/cal.com**](https://github.com/calcom/cal.com/tree/main/apps%2Fstorybook) (`apps/storybook`) | *n/a* | [Data](./data/github.com/calcom/cal.com/bWFpbgo/YXBwcy9zdG9yeWJvb2sK) |
| ❌ | [**github.com/calcom/cal.com**](https://github.com/calcom/cal.com/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/calcom/cal.com/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/callmemagnus/nextcloud-searchpage**](https://github.com/callmemagnus/nextcloud-searchpage/tree/main/) | 6s | [Data](./data/github.com/callmemagnus/nextcloud-searchpage/bWFpbgo/Cg) |
| ✅ | [**github.com/callumacrae/sketchbook**](https://github.com/callumacrae/sketchbook/tree/main/) | 7s | [Data](./data/github.com/callumacrae/sketchbook/bWFpbgo/Cg) |
| ✅ | [**github.com/cam-inc/viron**](https://github.com/cam-inc/viron/tree/develop/packages%2Fapp) (`packages/app`) | 15s | [Data](./data/github.com/cam-inc/viron/ZGV2ZWxvcAo/cGFja2FnZXMvYXBwCg) |
| ✅ | [**github.com/camiinthisthang/learnsway-web3rsvp**](https://github.com/camiinthisthang/learnsway-web3rsvp/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/camiinthisthang/learnsway-web3rsvp/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/camya/filament-title-with-slug**](https://github.com/camya/filament-title-with-slug/tree/main/) | 9s | [Data](./data/github.com/camya/filament-title-with-slug/bWFpbgo/Cg) |
| ✅ | [**github.com/candidosales/landing-page-book-astro-svelte-tailwind**](https://github.com/candidosales/landing-page-book-astro-svelte-tailwind/tree/main/) | 30s | [Data](./data/github.com/candidosales/landing-page-book-astro-svelte-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/canopas/canopas-website**](https://github.com/canopas/canopas-website/tree/master/nuxt-frontend) (`nuxt-frontend`) | 29s | [Data](./data/github.com/canopas/canopas-website/bWFzdGVyCg/bnV4dC1mcm9udGVuZAo) |
| ✅ | [**github.com/canstand/compost**](https://github.com/canstand/compost/tree/main/) | 6s | [Data](./data/github.com/canstand/compost/bWFpbgo/Cg) |
| ❌ | [**github.com/canyongbs/advisingapp**](https://github.com/canyongbs/advisingapp/tree/main/) | *n/a* | [Data](./data/github.com/canyongbs/advisingapp/bWFpbgo/Cg) |
| ✅ | [**github.com/carlosbaraza/lostdock**](https://github.com/carlosbaraza/lostdock/tree/main/apps%2Fdocs) (`apps/docs`) | 34s | [Data](./data/github.com/carlosbaraza/lostdock/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/carstenlebek/Portfolio**](https://github.com/carstenlebek/Portfolio/tree/master/) | 7s | [Data](./data/github.com/carstenlebek/Portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/catherineisonline/travel-with-catherine**](https://github.com/catherineisonline/travel-with-catherine/tree/main/) | 14s | [Data](./data/github.com/catherineisonline/travel-with-catherine/bWFpbgo/Cg) |
| ✅ | [**github.com/cbh123/shlinked**](https://github.com/cbh123/shlinked/tree/main/assets) (`assets`) | 10s | [Data](./data/github.com/cbh123/shlinked/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/cce-websitecoordinator/cce-website**](https://github.com/cce-websitecoordinator/cce-website/tree/main/cce_web_theme%2Fstatic_src) (`cce_web_theme/static_src`) | 31s | [Data](./data/github.com/cce-websitecoordinator/cce-website/bWFpbgo/Y2NlX3dlYl90aGVtZS9zdGF0aWNfc3JjCg) |
| ✅ | [**github.com/ccrsxx/twitter-clone**](https://github.com/ccrsxx/twitter-clone/tree/main/) | 9s | [Data](./data/github.com/ccrsxx/twitter-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/cearls/timberland**](https://github.com/cearls/timberland/tree/main/) | 7s | [Data](./data/github.com/cearls/timberland/bWFpbgo/Cg) |
| ✅ | [**github.com/cesium/hydrogen**](https://github.com/cesium/hydrogen/tree/main/) | 5s | [Data](./data/github.com/cesium/hydrogen/bWFpbgo/Cg) |
| ✅ | [**github.com/cesium/seium.org**](https://github.com/cesium/seium.org/tree/main/) | 7s | [Data](./data/github.com/cesium/seium.org/bWFpbgo/Cg) |
| ✅ | [**github.com/cfour-hi/gitstars**](https://github.com/cfour-hi/gitstars/tree/main/) | 13s | [Data](./data/github.com/cfour-hi/gitstars/bWFpbgo/Cg) |
| ✅ | [**github.com/chaibuilder/sdk**](https://github.com/chaibuilder/sdk/tree/main/) | 7s | [Data](./data/github.com/chaibuilder/sdk/bWFpbgo/Cg) |
| ✅ | [**github.com/chatwoot/ui**](https://github.com/chatwoot/ui/tree/main/) | 9s | [Data](./data/github.com/chatwoot/ui/bWFpbgo/Cg) |
| ✅ | [**github.com/chemiadel/nextjs-firebase-tailwindcss**](https://github.com/chemiadel/nextjs-firebase-tailwindcss/tree/main/) | 9s | [Data](./data/github.com/chemiadel/nextjs-firebase-tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/chess-mazes/chess-mazes**](https://github.com/chess-mazes/chess-mazes/tree/main/) | 9s | [Data](./data/github.com/chess-mazes/chess-mazes/bWFpbgo/Cg) |
| ✅ | [**github.com/chetanverma16/react-portfolio-template**](https://github.com/chetanverma16/react-portfolio-template/tree/main/) | 11s | [Data](./data/github.com/chetanverma16/react-portfolio-template/bWFpbgo/Cg) |
| ✅ | [**github.com/chiefpansancolt/simplecov-tailwindcss**](https://github.com/chiefpansancolt/simplecov-tailwindcss/tree/main/) | 7s | [Data](./data/github.com/chiefpansancolt/simplecov-tailwindcss/bWFpbgo/Cg) |
| ❌ | [**github.com/chingu-x/chingu-dashboard**](https://github.com/chingu-x/chingu-dashboard/tree/dev/) | *n/a* | [Data](./data/github.com/chingu-x/chingu-dashboard/ZGV2Cg/Cg) |
| ✅ | [**github.com/chrede88/qubt**](https://github.com/chrede88/qubt/tree/main/) | 9s | [Data](./data/github.com/chrede88/qubt/bWFpbgo/Cg) |
| ✅ | [**github.com/chrismwilliams/astro-theme-cactus**](https://github.com/chrismwilliams/astro-theme-cactus/tree/main/) | 23s | [Data](./data/github.com/chrismwilliams/astro-theme-cactus/bWFpbgo/Cg) |
| ✅ | [**github.com/chrismwilliams/gatsby-emotion-tailwind-starter**](https://github.com/chrismwilliams/gatsby-emotion-tailwind-starter/tree/main/) | 9s | [Data](./data/github.com/chrismwilliams/gatsby-emotion-tailwind-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/christianhaller/download-your-travelmap**](https://github.com/christianhaller/download-your-travelmap/tree/main/) | 7s | [Data](./data/github.com/christianhaller/download-your-travelmap/bWFpbgo/Cg) |
| ✅ | [**github.com/chroxify/namegpt**](https://github.com/chroxify/namegpt/tree/main/) | 7s | [Data](./data/github.com/chroxify/namegpt/bWFpbgo/Cg) |
| ✅ | [**github.com/ciampo/offbeat-appetite**](https://github.com/ciampo/offbeat-appetite/tree/master/) | 10s | [Data](./data/github.com/ciampo/offbeat-appetite/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ciampo/portfolio-2019**](https://github.com/ciampo/portfolio-2019/tree/master/) | 11s | [Data](./data/github.com/ciampo/portfolio-2019/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/cilium/cilium.io**](https://github.com/cilium/cilium.io/tree/main/) | 24s | [Data](./data/github.com/cilium/cilium.io/bWFpbgo/Cg) |
| ✅ | [**github.com/ciscoheat/superforms-web**](https://github.com/ciscoheat/superforms-web/tree/main/) | 19s | [Data](./data/github.com/ciscoheat/superforms-web/bWFpbgo/Cg) |
| ✅ | [**github.com/cjinhuo/cjinhuo.github.io**](https://github.com/cjinhuo/cjinhuo.github.io/tree/master/) | 20s | [Data](./data/github.com/cjinhuo/cjinhuo.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/cjohansen/powerblog**](https://github.com/cjohansen/powerblog/tree/main/) | 6s | [Data](./data/github.com/cjohansen/powerblog/bWFpbgo/Cg) |
| ✅ | [**github.com/clacladev/cairo-utils-web**](https://github.com/clacladev/cairo-utils-web/tree/dev/) | 6s | [Data](./data/github.com/clacladev/cairo-utils-web/ZGV2Cg/Cg) |
| ✅ | [**github.com/claudiabdm/cvfy**](https://github.com/claudiabdm/cvfy/tree/main/) | 1m 28s | [Data](./data/github.com/claudiabdm/cvfy/bWFpbgo/Cg) |
| ✅ | [**github.com/cld-agency/craftwind-boilerplate**](https://github.com/cld-agency/craftwind-boilerplate/tree/craft-4/) | 5s | [Data](./data/github.com/cld-agency/craftwind-boilerplate/Y3JhZnQtNAo/Cg) |
| ✅ | [**github.com/clickfwd/yoyo-app**](https://github.com/clickfwd/yoyo-app/tree/master/) | 1m 42s | [Data](./data/github.com/clickfwd/yoyo-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/climax1115/React-Next-Tailwind-Cloudbunnies**](https://github.com/climax1115/React-Next-Tailwind-Cloudbunnies/tree/main/) | 10s | [Data](./data/github.com/climax1115/React-Next-Tailwind-Cloudbunnies/bWFpbgo/Cg) |
| ✅ | [**github.com/cloudflare/har-sanitizer**](https://github.com/cloudflare/har-sanitizer/tree/main/) | 6s | [Data](./data/github.com/cloudflare/har-sanitizer/bWFpbgo/Cg) |
| ✅ | [**github.com/cndycd/nextjs-jukebox**](https://github.com/cndycd/nextjs-jukebox/tree/main/) | 9s | [Data](./data/github.com/cndycd/nextjs-jukebox/bWFpbgo/Cg) |
| ✅ | [**github.com/coast-team/mute**](https://github.com/coast-team/mute/tree/main/) | 7s | [Data](./data/github.com/coast-team/mute/bWFpbgo/Cg) |
| ✅ | [**github.com/cod3rcursos/curso-intensivo-react-next-2023**](https://github.com/cod3rcursos/curso-intensivo-react-next-2023/tree/main/app-inicial) (`app-inicial`) | 6s | [Data](./data/github.com/cod3rcursos/curso-intensivo-react-next-2023/bWFpbgo/YXBwLWluaWNpYWwK) |
| ✅ | [**github.com/code-hike/not-tailwind**](https://github.com/code-hike/not-tailwind/tree/main/) | 9s | [Data](./data/github.com/code-hike/not-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/code-wizard21/business-website-template**](https://github.com/code-wizard21/business-website-template/tree/main/) | 7s | [Data](./data/github.com/code-wizard21/business-website-template/bWFpbgo/Cg) |
| ✅ | [**github.com/code4romania/website-factory**](https://github.com/code4romania/website-factory/tree/main/) | 9s | [Data](./data/github.com/code4romania/website-factory/bWFpbgo/Cg) |
| ✅ | [**github.com/codediodeio/sveltefire**](https://github.com/codediodeio/sveltefire/tree/master/docs) (`docs`) | 34s | [Data](./data/github.com/codediodeio/sveltefire/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/codeempirev/multi-part-form-react-nextjs**](https://github.com/codeempirev/multi-part-form-react-nextjs/tree/main/) | 9s | [Data](./data/github.com/codeempirev/multi-part-form-react-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/codeinthedarkbrasil/manage-citd**](https://github.com/codeinthedarkbrasil/manage-citd/tree/main/) | 10s | [Data](./data/github.com/codeinthedarkbrasil/manage-citd/bWFpbgo/Cg) |
| ❌ | [**github.com/codelitdev/courselit**](https://github.com/codelitdev/courselit/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/codelitdev/courselit/bWFpbgo/YXBwcy93ZWIK) |
| ❌ | [**github.com/codelitdev/courselit**](https://github.com/codelitdev/courselit/tree/main/packages%2Fcommon-widgets) (`packages/common-widgets`) | *n/a* | [Data](./data/github.com/codelitdev/courselit/bWFpbgo/cGFja2FnZXMvY29tbW9uLXdpZGdldHMK) |
| ❌ | [**github.com/codelitdev/courselit**](https://github.com/codelitdev/courselit/tree/main/packages%2Fcomponents-library) (`packages/components-library`) | *n/a* | [Data](./data/github.com/codelitdev/courselit/bWFpbgo/cGFja2FnZXMvY29tcG9uZW50cy1saWJyYXJ5Cg) |
| ❌ | [**github.com/codelitdev/courselit**](https://github.com/codelitdev/courselit/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | *n/a* | [Data](./data/github.com/codelitdev/courselit/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/coderdost/MERN-ecommerce-Frontend**](https://github.com/coderdost/MERN-ecommerce-Frontend/tree/main/) | 6s | [Data](./data/github.com/coderdost/MERN-ecommerce-Frontend/bWFpbgo/Cg) |
| ❌ | [**github.com/coderinblack08/presage**](https://github.com/coderinblack08/presage/tree/staging/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/coderinblack08/presage/c3RhZ2luZwo/YXBwcy93ZWIK) |
| ❌ | [**github.com/coderinblack08/presage**](https://github.com/coderinblack08/presage/tree/staging/packages%2Ftailwind-config) (`packages/tailwind-config`) | *n/a* | [Data](./data/github.com/coderinblack08/presage/c3RhZ2luZwo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ❌ | [**github.com/coderinblack08/presage**](https://github.com/coderinblack08/presage/tree/staging/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/coderinblack08/presage/c3RhZ2luZwo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/codestates-seb/seb43_main_013**](https://github.com/codestates-seb/seb43_main_013/tree/main/client) (`client`) | 7s | [Data](./data/github.com/codestates-seb/seb43_main_013/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/codewithvoid/AskDevs**](https://github.com/codewithvoid/AskDevs/tree/main/) | 5s | [Data](./data/github.com/codewithvoid/AskDevs/bWFpbgo/Cg) |
| ✅ | [**github.com/codiplace/bun-monorepo**](https://github.com/codiplace/bun-monorepo/tree/main/apps%2Fweb) (`apps/web`) | 7s | [Data](./data/github.com/codiplace/bun-monorepo/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/cohu-dev/count-down.cohu.dev**](https://github.com/cohu-dev/count-down.cohu.dev/tree/main/) | 5s | [Data](./data/github.com/cohu-dev/count-down.cohu.dev/bWFpbgo/Cg) |
| ❌ | [**github.com/coinbase/build-onchain-apps**](https://github.com/coinbase/build-onchain-apps/tree/main/template%2Fweb) (`template/web`) | *n/a* | [Data](./data/github.com/coinbase/build-onchain-apps/bWFpbgo/dGVtcGxhdGUvd2ViCg) |
| ❌ | [**github.com/coingaming/moon-design**](https://github.com/coingaming/moon-design/tree/develop/docs) (`docs`) | *n/a* | [Data](./data/github.com/coingaming/moon-design/ZGV2ZWxvcAo/ZG9jcwo) |
| ❌ | [**github.com/coingaming/moon-design**](https://github.com/coingaming/moon-design/tree/develop/next-docs) (`next-docs`) | *n/a* | [Data](./data/github.com/coingaming/moon-design/ZGV2ZWxvcAo/bmV4dC1kb2NzCg) |
| ✅ | [**github.com/colinhemphill/nextjs-resume**](https://github.com/colinhemphill/nextjs-resume/tree/main/) | 9s | [Data](./data/github.com/colinhemphill/nextjs-resume/bWFpbgo/Cg) |
| ✅ | [**github.com/collectionscms/collections**](https://github.com/collectionscms/collections/tree/main/docs) (`docs`) | 9s | [Data](./data/github.com/collectionscms/collections/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/commercelayer/commercelayer-sanity-template**](https://github.com/commercelayer/commercelayer-sanity-template/tree/main/) | 8s | [Data](./data/github.com/commercelayer/commercelayer-sanity-template/bWFpbgo/Cg) |
| ✅ | [**github.com/community-builders/community-builders.github-io**](https://github.com/community-builders/community-builders.github-io/tree/main/) | 7s | [Data](./data/github.com/community-builders/community-builders.github-io/bWFpbgo/Cg) |
| ✅ | [**github.com/conceptadev/mix**](https://github.com/conceptadev/mix/tree/main/website) (`website`) | 7s | [Data](./data/github.com/conceptadev/mix/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/condinoaljoseph/aljoseph.co**](https://github.com/condinoaljoseph/aljoseph.co/tree/master/) | 9s | [Data](./data/github.com/condinoaljoseph/aljoseph.co/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/conflux-fans/pos-pool**](https://github.com/conflux-fans/pos-pool/tree/main/interface) (`interface`) | 12s | [Data](./data/github.com/conflux-fans/pos-pool/bWFpbgo/aW50ZXJmYWNlCg) |
| ✅ | [**github.com/contentful/template-blog-webapp-nextjs**](https://github.com/contentful/template-blog-webapp-nextjs/tree/main/) | 10s | [Data](./data/github.com/contentful/template-blog-webapp-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/continuedev/continue**](https://github.com/continuedev/continue/tree/main/gui) (`gui`) | 34s | [Data](./data/github.com/continuedev/continue/bWFpbgo/Z3VpCg) |
| ✅ | [**github.com/contributte/webpack-skeleton**](https://github.com/contributte/webpack-skeleton/tree/master/) | 5s | [Data](./data/github.com/contributte/webpack-skeleton/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/coollabsio/coolify**](https://github.com/coollabsio/coolify/tree/main/) | 9s | [Data](./data/github.com/coollabsio/coolify/bWFpbgo/Cg) |
| ❌ | [**github.com/coral-xyz/backpack**](https://github.com/coral-xyz/backpack/tree/master/web) (`web`) | *n/a* | [Data](./data/github.com/coral-xyz/backpack/bWFzdGVyCg/d2ViCg) |
| ❌ | [**github.com/core-hacked/tesla-alerts-dictionary**](https://github.com/core-hacked/tesla-alerts-dictionary/tree/master/) | *n/a* | [Data](./data/github.com/core-hacked/tesla-alerts-dictionary/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/coreproject-moe/CoreProject-Monorepo**](https://github.com/coreproject-moe/CoreProject-Monorepo/tree/master/backend) (`backend`) | 10s | [Data](./data/github.com/coreproject-moe/CoreProject-Monorepo/bWFzdGVyCg/YmFja2VuZAo) |
| ✅ | [**github.com/cortez/RoutinesAI**](https://github.com/cortez/RoutinesAI/tree/main/) | 6s | [Data](./data/github.com/cortez/RoutinesAI/bWFpbgo/Cg) |
| ✅ | [**github.com/cosmicjs/blocks**](https://github.com/cosmicjs/blocks/tree/main/) | 13s | [Data](./data/github.com/cosmicjs/blocks/bWFpbgo/Cg) |
| ❌ | [**github.com/cosmicjs/blocks**](https://github.com/cosmicjs/blocks/tree/main/packages%2Fcli) (`packages/cli`) | *n/a* | [Data](./data/github.com/cosmicjs/blocks/bWFpbgo/cGFja2FnZXMvY2xpCg) |
| ✅ | [**github.com/cotton123236/zoomist**](https://github.com/cotton123236/zoomist/tree/main/docs) (`docs`) | 26s | [Data](./data/github.com/cotton123236/zoomist/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/cpe-kmutt-student/bangmod-hackathon-2023**](https://github.com/cpe-kmutt-student/bangmod-hackathon-2023/tree/main/apps%2Fregistration) (`apps/registration`) | 43s | [Data](./data/github.com/cpe-kmutt-student/bangmod-hackathon-2023/bWFpbgo/YXBwcy9yZWdpc3RyYXRpb24K) |
| ❌ | [**github.com/cr4yfish/nemmy**](https://github.com/cr4yfish/nemmy/tree/main/) | *n/a* | [Data](./data/github.com/cr4yfish/nemmy/bWFpbgo/Cg) |
| ✅ | [**github.com/craftzdog/craftzdog-uses**](https://github.com/craftzdog/craftzdog-uses/tree/main/) | 13s | [Data](./data/github.com/craftzdog/craftzdog-uses/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/argon-dashboard-tailwind**](https://github.com/creativetimofficial/argon-dashboard-tailwind/tree/main/) | 8s | [Data](./data/github.com/creativetimofficial/argon-dashboard-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/astro-launch-ui**](https://github.com/creativetimofficial/astro-launch-ui/tree/main/) | 28s | [Data](./data/github.com/creativetimofficial/astro-launch-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/material-tailwind**](https://github.com/creativetimofficial/material-tailwind/tree/main/) | 39s | [Data](./data/github.com/creativetimofficial/material-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/material-tailwind**](https://github.com/creativetimofficial/material-tailwind/tree/main/packages%2Fmaterial-tailwind-html) (`packages/material-tailwind-html`) | 1m 16s | [Data](./data/github.com/creativetimofficial/material-tailwind/bWFpbgo/cGFja2FnZXMvbWF0ZXJpYWwtdGFpbHdpbmQtaHRtbAo) |
| ✅ | [**github.com/creativetimofficial/material-tailwind-dashboard-react**](https://github.com/creativetimofficial/material-tailwind-dashboard-react/tree/main/) | 8s | [Data](./data/github.com/creativetimofficial/material-tailwind-dashboard-react/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/material-tailwind-kit-react**](https://github.com/creativetimofficial/material-tailwind-kit-react/tree/main/) | 9s | [Data](./data/github.com/creativetimofficial/material-tailwind-kit-react/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/notus-js**](https://github.com/creativetimofficial/notus-js/tree/main/) | 7s | [Data](./data/github.com/creativetimofficial/notus-js/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/soft-ui-dashboard-tailwind**](https://github.com/creativetimofficial/soft-ui-dashboard-tailwind/tree/main/) | 7s | [Data](./data/github.com/creativetimofficial/soft-ui-dashboard-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/creativetimofficial/soft-ui-dashboard-tall**](https://github.com/creativetimofficial/soft-ui-dashboard-tall/tree/master/) | 7s | [Data](./data/github.com/creativetimofficial/soft-ui-dashboard-tall/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/creativetimofficial/tailwind-starter-kit**](https://github.com/creativetimofficial/tailwind-starter-kit/tree/main/Landing%20Page%2Fnext-landing-page) (`Landing Page/next-landing-page`) | 8s | [Data](./data/github.com/creativetimofficial/tailwind-starter-kit/bWFpbgo/TGFuZGluZyBQYWdlL25leHQtbGFuZGluZy1wYWdlCg) |
| ✅ | [**github.com/creekdrops/svelte-pocketbase**](https://github.com/creekdrops/svelte-pocketbase/tree/main/) | 8s | [Data](./data/github.com/creekdrops/svelte-pocketbase/bWFpbgo/Cg) |
| ✅ | [**github.com/crisanlucid/vite-react-tailwind-bionic-reading**](https://github.com/crisanlucid/vite-react-tailwind-bionic-reading/tree/main/) | 8s | [Data](./data/github.com/crisanlucid/vite-react-tailwind-bionic-reading/bWFpbgo/Cg) |
| ✅ | [**github.com/crisanlucid/vite-react-ts-hardhat-web3-NFT-tutorial**](https://github.com/crisanlucid/vite-react-ts-hardhat-web3-NFT-tutorial/tree/main/dApp_NFT) (`dApp_NFT`) | 10s | [Data](./data/github.com/crisanlucid/vite-react-ts-hardhat-web3-NFT-tutorial/bWFpbgo/ZEFwcF9ORlQK) |
| ✅ | [**github.com/cruip/cruip-tutorials-next**](https://github.com/cruip/cruip-tutorials-next/tree/main/) | 7s | [Data](./data/github.com/cruip/cruip-tutorials-next/bWFpbgo/Cg) |
| ✅ | [**github.com/cruip/laravel-tailwindcss-admin-dashboard-template**](https://github.com/cruip/laravel-tailwindcss-admin-dashboard-template/tree/main/) | 7s | [Data](./data/github.com/cruip/laravel-tailwindcss-admin-dashboard-template/bWFpbgo/Cg) |
| ✅ | [**github.com/cruip/tailwind-landing-page-template**](https://github.com/cruip/tailwind-landing-page-template/tree/main/) | 12s | [Data](./data/github.com/cruip/tailwind-landing-page-template/bWFpbgo/Cg) |
| ✅ | [**github.com/cssninjaStudio/dokto**](https://github.com/cssninjaStudio/dokto/tree/main/) | 22s | [Data](./data/github.com/cssninjaStudio/dokto/bWFpbgo/Cg) |
| ✅ | [**github.com/cube-js/cube**](https://github.com/cube-js/cube/tree/master/docs) (`docs`) | 10s | [Data](./data/github.com/cube-js/cube/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/cuentoneta/cuentoneta**](https://github.com/cuentoneta/cuentoneta/tree/develop/) | 42s | [Data](./data/github.com/cuentoneta/cuentoneta/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/cursorless-dev/cursorless**](https://github.com/cursorless-dev/cursorless/tree/main/packages%2Fcheatsheet-local) (`packages/cheatsheet-local`) | 1m 28s | [Data](./data/github.com/cursorless-dev/cursorless/bWFpbgo/cGFja2FnZXMvY2hlYXRzaGVldC1sb2NhbAo) |
| ✅ | [**github.com/cursorless-dev/cursorless**](https://github.com/cursorless-dev/cursorless/tree/main/packages%2Fcursorless-org) (`packages/cursorless-org`) | 1m 21s | [Data](./data/github.com/cursorless-dev/cursorless/bWFpbgo/cGFja2FnZXMvY3Vyc29ybGVzcy1vcmcK) |
| ✅ | [**github.com/cvrlnolan/turborepo-tailwindcss**](https://github.com/cvrlnolan/turborepo-tailwindcss/tree/main/packages%2Fconfig) (`packages/config`) | 1m 22s | [Data](./data/github.com/cvrlnolan/turborepo-tailwindcss/bWFpbgo/cGFja2FnZXMvY29uZmlnCg) |
| ✅ | [**github.com/cwjoshuak/lostarktimer.app-web**](https://github.com/cwjoshuak/lostarktimer.app-web/tree/main/) | 10s | [Data](./data/github.com/cwjoshuak/lostarktimer.app-web/bWFpbgo/Cg) |
| ✅ | [**github.com/cypress-io/cypress**](https://github.com/cypress-io/cypress/tree/develop/packages%2Ffrontend-shared) (`packages/frontend-shared`) | 20s | [Data](./data/github.com/cypress-io/cypress/ZGV2ZWxvcAo/cGFja2FnZXMvZnJvbnRlbmQtc2hhcmVkCg) |
| ❌ | [**github.com/cypress-io/cypress-design**](https://github.com/cypress-io/cypress-design/tree/main/) | *n/a* | [Data](./data/github.com/cypress-io/cypress-design/bWFpbgo/Cg) |
| ✅ | [**github.com/cytechmobile/radicle-vscode-extension**](https://github.com/cytechmobile/radicle-vscode-extension/tree/main/src%2Fwebviews) (`src/webviews`) | 8s | [Data](./data/github.com/cytechmobile/radicle-vscode-extension/bWFpbgo/c3JjL3dlYnZpZXdzCg) |
| ✅ | [**github.com/d-hp/storybook-ai-rf3**](https://github.com/d-hp/storybook-ai-rf3/tree/main/) | 8s | [Data](./data/github.com/d-hp/storybook-ai-rf3/bWFpbgo/Cg) |
| ✅ | [**github.com/daflh/vredeburg**](https://github.com/daflh/vredeburg/tree/master/) | 7s | [Data](./data/github.com/daflh/vredeburg/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/dailydotdev/apps**](https://github.com/dailydotdev/apps/tree/main/packages%2Fextension) (`packages/extension`) | *n/a* | [Data](./data/github.com/dailydotdev/apps/bWFpbgo/cGFja2FnZXMvZXh0ZW5zaW9uCg) |
| ✅ | [**github.com/dailydotdev/apps**](https://github.com/dailydotdev/apps/tree/main/packages%2Fshared) (`packages/shared`) | 1m 45s | [Data](./data/github.com/dailydotdev/apps/bWFpbgo/cGFja2FnZXMvc2hhcmVkCg) |
| ❌ | [**github.com/dailydotdev/apps**](https://github.com/dailydotdev/apps/tree/main/packages%2Fwebapp) (`packages/webapp`) | *n/a* | [Data](./data/github.com/dailydotdev/apps/bWFpbgo/cGFja2FnZXMvd2ViYXBwCg) |
| ✅ | [**github.com/daison12006013/sveltekit-starter**](https://github.com/daison12006013/sveltekit-starter/tree/develop/) | 26s | [Data](./data/github.com/daison12006013/sveltekit-starter/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/daisyui/react-daisyui**](https://github.com/daisyui/react-daisyui/tree/main/) | 7s | [Data](./data/github.com/daisyui/react-daisyui/bWFpbgo/Cg) |
| ✅ | [**github.com/dan5py/react-vite-shadcn-ui**](https://github.com/dan5py/react-vite-shadcn-ui/tree/main/) | 8s | [Data](./data/github.com/dan5py/react-vite-shadcn-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/dan5py/turborepo-shadcn-ui**](https://github.com/dan5py/turborepo-shadcn-ui/tree/main/apps%2Fdocs) (`apps/docs`) | 19s | [Data](./data/github.com/dan5py/turborepo-shadcn-ui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/dan5py/turborepo-shadcn-ui**](https://github.com/dan5py/turborepo-shadcn-ui/tree/main/packages%2Fui) (`packages/ui`) | 20s | [Data](./data/github.com/dan5py/turborepo-shadcn-ui/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/danawoodman/bun-htmx**](https://github.com/danawoodman/bun-htmx/tree/main/) | 6s | [Data](./data/github.com/danawoodman/bun-htmx/bWFpbgo/Cg) |
| ✅ | [**github.com/danestves/curso-nextjs-cf**](https://github.com/danestves/curso-nextjs-cf/tree/main/) | 9s | [Data](./data/github.com/danestves/curso-nextjs-cf/bWFpbgo/Cg) |
| ✅ | [**github.com/dangbt/admin-template-2023**](https://github.com/dangbt/admin-template-2023/tree/master/) | 8s | [Data](./data/github.com/dangbt/admin-template-2023/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/danicunhac/daily-dad-joke**](https://github.com/danicunhac/daily-dad-joke/tree/main/) | 9s | [Data](./data/github.com/danicunhac/daily-dad-joke/bWFpbgo/Cg) |
| ✅ | [**github.com/danielcgilibert/OpenLink**](https://github.com/danielcgilibert/OpenLink/tree/main/) | 9s | [Data](./data/github.com/danielcgilibert/OpenLink/bWFpbgo/Cg) |
| ✅ | [**github.com/danihodovic/django-allauth-ui**](https://github.com/danihodovic/django-allauth-ui/tree/master/) | 6s | [Data](./data/github.com/danihodovic/django-allauth-ui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/danixsofyan/wedding-invitation**](https://github.com/danixsofyan/wedding-invitation/tree/main/) | 11s | [Data](./data/github.com/danixsofyan/wedding-invitation/bWFpbgo/Cg) |
| ✅ | [**github.com/danny-avila/LibreChat**](https://github.com/danny-avila/LibreChat/tree/main/client) (`client`) | 5m 27s | [Data](./data/github.com/danny-avila/LibreChat/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/danpacho/tailwindest**](https://github.com/danpacho/tailwindest/tree/master/site) (`site`) | 8s | [Data](./data/github.com/danpacho/tailwindest/bWFzdGVyCg/c2l0ZQo) |
| ✅ | [**github.com/danstepanov/create-expo-stack**](https://github.com/danstepanov/create-expo-stack/tree/main/docs) (`docs`) | 25s | [Data](./data/github.com/danstepanov/create-expo-stack/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/danstepanov/create-expo-stack**](https://github.com/danstepanov/create-expo-stack/tree/main/www) (`www`) | 31s | [Data](./data/github.com/danstepanov/create-expo-stack/bWFpbgo/d3d3Cg) |
| ✅ | [**github.com/danswer-ai/danswer**](https://github.com/danswer-ai/danswer/tree/main/web) (`web`) | 44s | [Data](./data/github.com/danswer-ai/danswer/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/danybeltran/nextjs-typescript-and-mongodb**](https://github.com/danybeltran/nextjs-typescript-and-mongodb/tree/main/) | 12s | [Data](./data/github.com/danybeltran/nextjs-typescript-and-mongodb/bWFpbgo/Cg) |
| ✅ | [**github.com/daoleno/bbox**](https://github.com/daoleno/bbox/tree/main/) | 11s | [Data](./data/github.com/daoleno/bbox/bWFpbgo/Cg) |
| ✅ | [**github.com/dappforce/subid**](https://github.com/dappforce/subid/tree/main/) | 29s | [Data](./data/github.com/dappforce/subid/bWFpbgo/Cg) |
| ❌ | [**github.com/darenmalfait/nerdfish.be**](https://github.com/darenmalfait/nerdfish.be/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/darenmalfait/nerdfish.be/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/darenmalfait/nerdfish.be**](https://github.com/darenmalfait/nerdfish.be/tree/main/packages%2Fui) (`packages/ui`) | 2m 36s | [Data](./data/github.com/darenmalfait/nerdfish.be/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/darichey/PureSweep**](https://github.com/darichey/PureSweep/tree/main/) | 4s | [Data](./data/github.com/darichey/PureSweep/bWFpbgo/Cg) |
| ✅ | [**github.com/darkstars31/csc-stat-viewer**](https://github.com/darkstars31/csc-stat-viewer/tree/master/) | 8s | [Data](./data/github.com/darkstars31/csc-stat-viewer/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/darshanbaral/sada**](https://github.com/darshanbaral/sada/tree/master/) | 6s | [Data](./data/github.com/darshanbaral/sada/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/data-gov-my/datagovmy-front**](https://github.com/data-gov-my/datagovmy-front/tree/main/apps%2Fapp) (`apps/app`) | 9m 14s | [Data](./data/github.com/data-gov-my/datagovmy-front/bWFpbgo/YXBwcy9hcHAK) |
| ✅ | [**github.com/data-gov-my/datagovmy-front**](https://github.com/data-gov-my/datagovmy-front/tree/main/apps%2Fkkmnow) (`apps/kkmnow`) | 7m 25s | [Data](./data/github.com/data-gov-my/datagovmy-front/bWFpbgo/YXBwcy9ra21ub3cK) |
| ✅ | [**github.com/data-gov-my/datagovmy-front**](https://github.com/data-gov-my/datagovmy-front/tree/main/apps%2Fopendosm) (`apps/opendosm`) | 5m 6s | [Data](./data/github.com/data-gov-my/datagovmy-front/bWFpbgo/YXBwcy9vcGVuZG9zbQo) |
| ✅ | [**github.com/data-gov-my/datagovmy-front**](https://github.com/data-gov-my/datagovmy-front/tree/main/packages%2Fdatagovmy-nextra) (`packages/datagovmy-nextra`) | 12s | [Data](./data/github.com/data-gov-my/datagovmy-front/bWFpbgo/cGFja2FnZXMvZGF0YWdvdm15LW5leHRyYQo) |
| ✅ | [**github.com/data-gov-my/datagovmy-front**](https://github.com/data-gov-my/datagovmy-front/tree/main/packages%2Fdatagovmy-ui) (`packages/datagovmy-ui`) | 3m 2s | [Data](./data/github.com/data-gov-my/datagovmy-front/bWFpbgo/cGFja2FnZXMvZGF0YWdvdm15LXVpCg) |
| ❌ | [**github.com/datapane/datapane**](https://github.com/datapane/datapane/tree/main/web-components) (`web-components`) | *n/a* | [Data](./data/github.com/datapane/datapane/bWFpbgo/d2ViLWNvbXBvbmVudHMK) |
| ✅ | [**github.com/datopian/portaljs**](https://github.com/datopian/portaljs/tree/main/packages%2Fckan) (`packages/ckan`) | 14s | [Data](./data/github.com/datopian/portaljs/bWFpbgo/cGFja2FnZXMvY2thbgo) |
| ✅ | [**github.com/datopian/portaljs**](https://github.com/datopian/portaljs/tree/main/packages%2Fcomponents) (`packages/components`) | 21s | [Data](./data/github.com/datopian/portaljs/bWFpbgo/cGFja2FnZXMvY29tcG9uZW50cwo) |
| ✅ | [**github.com/datopian/portaljs**](https://github.com/datopian/portaljs/tree/main/site) (`site`) | 12s | [Data](./data/github.com/datopian/portaljs/bWFpbgo/c2l0ZQo) |
| ✅ | [**github.com/david-plugge/sveltekit-supabase**](https://github.com/david-plugge/sveltekit-supabase/tree/main/packages%2Fsveltekit-supabase-stripe) (`packages/sveltekit-supabase-stripe`) | 19s | [Data](./data/github.com/david-plugge/sveltekit-supabase/bWFpbgo/cGFja2FnZXMvc3ZlbHRla2l0LXN1cGFiYXNlLXN0cmlwZQo) |
| ✅ | [**github.com/david-wagih/radicalx-apprenticeship-frontEnd-app**](https://github.com/david-wagih/radicalx-apprenticeship-frontEnd-app/tree/master/) | 6s | [Data](./data/github.com/david-wagih/radicalx-apprenticeship-frontEnd-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/davidbc01/PruebasAstro**](https://github.com/davidbc01/PruebasAstro/tree/master/) | 17s | [Data](./data/github.com/davidbc01/PruebasAstro/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/davidbc01/davidbc01.dev**](https://github.com/davidbc01/davidbc01.dev/tree/master/) | 25s | [Data](./data/github.com/davidbc01/davidbc01.dev/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/davidzzheng/tailwind-storybook**](https://github.com/davidzzheng/tailwind-storybook/tree/main/) | 11s | [Data](./data/github.com/davidzzheng/tailwind-storybook/bWFpbgo/Cg) |
| ✅ | [**github.com/ddev/ddev.com**](https://github.com/ddev/ddev.com/tree/main/) | 26s | [Data](./data/github.com/ddev/ddev.com/bWFpbgo/Cg) |
| ✅ | [**github.com/deaaprizal/cuyuniverse-forum**](https://github.com/deaaprizal/cuyuniverse-forum/tree/main/) | 7s | [Data](./data/github.com/deaaprizal/cuyuniverse-forum/bWFpbgo/Cg) |
| ✅ | [**github.com/dear-digital/shopify-theme-skeleton**](https://github.com/dear-digital/shopify-theme-skeleton/tree/main/) | 7s | [Data](./data/github.com/dear-digital/shopify-theme-skeleton/bWFpbgo/Cg) |
| ✅ | [**github.com/deepgram-devs/deepgram-cli-legacy**](https://github.com/deepgram-devs/deepgram-cli-legacy/tree/main/web) (`web`) | 7s | [Data](./data/github.com/deepgram-devs/deepgram-cli-legacy/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/deepsquare-io/nexus**](https://github.com/deepsquare-io/nexus/tree/dev/) | 7s | [Data](./data/github.com/deepsquare-io/nexus/ZGV2Cg/Cg) |
| ✅ | [**github.com/deetungsten/webui-privaxy**](https://github.com/deetungsten/webui-privaxy/tree/main/web_frontend) (`web_frontend`) | 5s | [Data](./data/github.com/deetungsten/webui-privaxy/bWFpbgo/d2ViX2Zyb250ZW5kCg) |
| ✅ | [**github.com/delbaoliveira/website**](https://github.com/delbaoliveira/website/tree/main/) | 9s | [Data](./data/github.com/delbaoliveira/website/bWFpbgo/Cg) |
| ✅ | [**github.com/delucis/astro-badge**](https://github.com/delucis/astro-badge/tree/latest/) | 44s | [Data](./data/github.com/delucis/astro-badge/bGF0ZXN0Cg/Cg) |
| ✅ | [**github.com/demon-bixia/Avian-Template**](https://github.com/demon-bixia/Avian-Template/tree/main/) | 9s | [Data](./data/github.com/demon-bixia/Avian-Template/bWFpbgo/Cg) |
| ✅ | [**github.com/denniskigen/ampath-forms**](https://github.com/denniskigen/ampath-forms/tree/main/) | 9s | [Data](./data/github.com/denniskigen/ampath-forms/bWFpbgo/Cg) |
| ✅ | [**github.com/denniskigen/react-weather**](https://github.com/denniskigen/react-weather/tree/main/) | 7s | [Data](./data/github.com/denniskigen/react-weather/bWFpbgo/Cg) |
| ✅ | [**github.com/denoland/monaco-nextjs-demo**](https://github.com/denoland/monaco-nextjs-demo/tree/main/) | 5s | [Data](./data/github.com/denoland/monaco-nextjs-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/deployn/nextjs-boilerplate-with-wordpress**](https://github.com/deployn/nextjs-boilerplate-with-wordpress/tree/main/) | 6s | [Data](./data/github.com/deployn/nextjs-boilerplate-with-wordpress/bWFpbgo/Cg) |
| ✅ | [**github.com/designatedcoder/coders_filament_admin_panel**](https://github.com/designatedcoder/coders_filament_admin_panel/tree/main/) | 6s | [Data](./data/github.com/designatedcoder/coders_filament_admin_panel/bWFpbgo/Cg) |
| ✅ | [**github.com/dev-xo/stripe-stack**](https://github.com/dev-xo/stripe-stack/tree/main/) | 5s | [Data](./data/github.com/dev-xo/stripe-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/devaslanphp/forumium**](https://github.com/devaslanphp/forumium/tree/master/) | 16s | [Data](./data/github.com/devaslanphp/forumium/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/developermithu/react-openai-app**](https://github.com/developermithu/react-openai-app/tree/main/) | 6s | [Data](./data/github.com/developermithu/react-openai-app/bWFpbgo/Cg) |
| ✅ | [**github.com/devicetree-org/devicetree-website**](https://github.com/devicetree-org/devicetree-website/tree/main/) | 16s | [Data](./data/github.com/devicetree-org/devicetree-website/bWFpbgo/Cg) |
| ✅ | [**github.com/devjewel01/devjewel01.github.io**](https://github.com/devjewel01/devjewel01.github.io/tree/main/) | 15s | [Data](./data/github.com/devjewel01/devjewel01.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/devoverid/forum**](https://github.com/devoverid/forum/tree/master/) | 11s | [Data](./data/github.com/devoverid/forum/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/devrsi0n/chirpy**](https://github.com/devrsi0n/chirpy/tree/main/apps%2Femails) (`apps/emails`) | 2m 2s | [Data](./data/github.com/devrsi0n/chirpy/bWFpbgo/YXBwcy9lbWFpbHMK) |
| ✅ | [**github.com/devrsi0n/chirpy**](https://github.com/devrsi0n/chirpy/tree/main/apps%2Fmain) (`apps/main`) | 1m 53s | [Data](./data/github.com/devrsi0n/chirpy/bWFpbgo/YXBwcy9tYWluCg) |
| ✅ | [**github.com/devrsi0n/chirpy**](https://github.com/devrsi0n/chirpy/tree/main/packages%2Fanalytics) (`packages/analytics`) | 1m 57s | [Data](./data/github.com/devrsi0n/chirpy/bWFpbgo/cGFja2FnZXMvYW5hbHl0aWNzCg) |
| ❌ | [**github.com/devrsi0n/chirpy**](https://github.com/devrsi0n/chirpy/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/devrsi0n/chirpy/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/) | 16s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/Cg) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FCRUD%20blog%20website%20%2B%20Firebase) (`PROJECTS/CRUD blog website + Firebase`) | 16s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvQ1JVRCBibG9nIHdlYnNpdGUgKyBGaXJlYmFzZQo) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FDisney-Clone) (`PROJECTS/Disney-Clone`) | 16s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvRGlzbmV5LUNsb25lCg) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FFavPets-web) (`PROJECTS/FavPets-web`) | 16s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvRmF2UGV0cy13ZWIK) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FMovie%20DB) (`PROJECTS/Movie DB`) | 15s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvTW92aWUgREIK) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FReact%20RestCountries) (`PROJECTS/React RestCountries`) | 15s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvUmVhY3QgUmVzdENvdW50cmllcwo) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FReact%20Website) (`PROJECTS/React Website`) | 15s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvUmVhY3QgV2Vic2l0ZQo) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2FReact-Portfolio) (`PROJECTS/React-Portfolio`) | 15s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvUmVhY3QtUG9ydGZvbGlvCg) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2Fmovie-watchlist) (`PROJECTS/movie-watchlist`) | 16s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvbW92aWUtd2F0Y2hsaXN0Cg) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2Freact-wordle) (`PROJECTS/react-wordle`) | 16s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvcmVhY3Qtd29yZGxlCg) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2Ftwitter-clone) (`PROJECTS/twitter-clone`) | 15s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvdHdpdHRlci1jbG9uZQo) |
| ✅ | [**github.com/devvsakib/power-the-web**](https://github.com/devvsakib/power-the-web/tree/main/PROJECTS%2Fuber-cloned-app) (`PROJECTS/uber-cloned-app`) | 18s | [Data](./data/github.com/devvsakib/power-the-web/bWFpbgo/UFJPSkVDVFMvdWJlci1jbG9uZWQtYXBwCg) |
| ✅ | [**github.com/devvsakib/realmate**](https://github.com/devvsakib/realmate/tree/main/) | 9s | [Data](./data/github.com/devvsakib/realmate/bWFpbgo/Cg) |
| ✅ | [**github.com/devwithzain/Hoobank-App-Landing-Page**](https://github.com/devwithzain/Hoobank-App-Landing-Page/tree/master/) | 8s | [Data](./data/github.com/devwithzain/Hoobank-App-Landing-Page/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/dfinity/icp-eth-starter**](https://github.com/dfinity/icp-eth-starter/tree/main/) | 6s | [Data](./data/github.com/dfinity/icp-eth-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/dgknca/tailwindcss-container-query**](https://github.com/dgknca/tailwindcss-container-query/tree/master/) | 9s | [Data](./data/github.com/dgknca/tailwindcss-container-query/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/dhatGuy/PERN-Store**](https://github.com/dhatGuy/PERN-Store/tree/main/client) (`client`) | 6s | [Data](./data/github.com/dhatGuy/PERN-Store/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/dhawal-793/DevFolio**](https://github.com/dhawal-793/DevFolio/tree/main/) | 6s | [Data](./data/github.com/dhawal-793/DevFolio/bWFpbgo/Cg) |
| ✅ | [**github.com/dicka88/nefa**](https://github.com/dicka88/nefa/tree/main/) | 9s | [Data](./data/github.com/dicka88/nefa/bWFpbgo/Cg) |
| ✅ | [**github.com/diego3g/flowly**](https://github.com/diego3g/flowly/tree/main/apps%2Fweb) (`apps/web`) | 7s | [Data](./data/github.com/diego3g/flowly/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/different-ai/obsidian-ava**](https://github.com/different-ai/obsidian-ava/tree/main/) | 9s | [Data](./data/github.com/different-ai/obsidian-ava/bWFpbgo/Cg) |
| ✅ | [**github.com/dilarauluturhan/hangman**](https://github.com/dilarauluturhan/hangman/tree/master/) | 6s | [Data](./data/github.com/dilarauluturhan/hangman/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/dimatill/graphql-shield**](https://github.com/dimatill/graphql-shield/tree/master/website) (`website`) | *n/a* | [Data](./data/github.com/dimatill/graphql-shield/bWFzdGVyCg/d2Vic2l0ZQo) |
| ❌ | [**github.com/dipsaus9/design-system-monorepo**](https://github.com/dipsaus9/design-system-monorepo/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/dipsaus9/design-system-monorepo/bWFpbgo/YXBwcy9kb2NzCg) |
| ❌ | [**github.com/dipsaus9/design-system-monorepo**](https://github.com/dipsaus9/design-system-monorepo/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/dipsaus9/design-system-monorepo/bWFpbgo/cGFja2FnZXMvdWkK) |
| ❌ | [**github.com/directus-labs/agency-os**](https://github.com/directus-labs/agency-os/tree/main/) | *n/a* | [Data](./data/github.com/directus-labs/agency-os/bWFpbgo/Cg) |
| ✅ | [**github.com/discordjs/discord.js**](https://github.com/discordjs/discord.js/tree/main/apps%2Fwebsite) (`apps/website`) | 1m 35s | [Data](./data/github.com/discordjs/discord.js/bWFpbgo/YXBwcy93ZWJzaXRlCg) |
| ✅ | [**github.com/dishant0406/lazyweb**](https://github.com/dishant0406/lazyweb/tree/main/lazyweb) (`lazyweb`) | 17s | [Data](./data/github.com/dishant0406/lazyweb/bWFpbgo/bGF6eXdlYgo) |
| ✅ | [**github.com/dishant0406/lazyweb**](https://github.com/dishant0406/lazyweb/tree/main/lazyweb-landing-page) (`lazyweb-landing-page`) | 7s | [Data](./data/github.com/dishant0406/lazyweb/bWFpbgo/bGF6eXdlYi1sYW5kaW5nLXBhZ2UK) |
| ✅ | [**github.com/distantcam/windty**](https://github.com/distantcam/windty/tree/main/) | 5s | [Data](./data/github.com/distantcam/windty/bWFpbgo/Cg) |
| ✅ | [**github.com/dlarroder/dalelarroder**](https://github.com/dlarroder/dalelarroder/tree/main/) | 9s | [Data](./data/github.com/dlarroder/dalelarroder/bWFpbgo/Cg) |
| ✅ | [**github.com/dlcastillop/paylink**](https://github.com/dlcastillop/paylink/tree/main/) | 7s | [Data](./data/github.com/dlcastillop/paylink/bWFpbgo/Cg) |
| ✅ | [**github.com/dmarman/dmarman.github.io**](https://github.com/dmarman/dmarman.github.io/tree/master/) | 8s | [Data](./data/github.com/dmarman/dmarman.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/dnnsjsk/glaze**](https://github.com/dnnsjsk/glaze/tree/main/docs) (`docs`) | 14s | [Data](./data/github.com/dnnsjsk/glaze/bWFpbgo/ZG9jcwo) |
| ❌ | [**github.com/documenso/documenso**](https://github.com/documenso/documenso/tree/main/apps%2Fmarketing) (`apps/marketing`) | *n/a* | [Data](./data/github.com/documenso/documenso/bWFpbgo/YXBwcy9tYXJrZXRpbmcK) |
| ❌ | [**github.com/documenso/documenso**](https://github.com/documenso/documenso/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/documenso/documenso/bWFpbgo/YXBwcy93ZWIK) |
| ❌ | [**github.com/documenso/documenso**](https://github.com/documenso/documenso/tree/main/packages%2Femail) (`packages/email`) | *n/a* | [Data](./data/github.com/documenso/documenso/bWFpbgo/cGFja2FnZXMvZW1haWwK) |
| ❌ | [**github.com/documenso/documenso**](https://github.com/documenso/documenso/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/documenso/documenso/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/docusealco/docuseal**](https://github.com/docusealco/docuseal/tree/master/) | 13s | [Data](./data/github.com/docusealco/docuseal/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/docyx/imdb-table**](https://github.com/docyx/imdb-table/tree/master/client) (`client`) | 7s | [Data](./data/github.com/docyx/imdb-table/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/doherty-labs/health-app-demo**](https://github.com/doherty-labs/health-app-demo/tree/main/web-app%2Fcustomer) (`web-app/customer`) | 6s | [Data](./data/github.com/doherty-labs/health-app-demo/bWFpbgo/d2ViLWFwcC9jdXN0b21lcgo) |
| ✅ | [**github.com/doherty-labs/health-app-demo**](https://github.com/doherty-labs/health-app-demo/tree/main/web-app%2Fstaff) (`web-app/staff`) | 6s | [Data](./data/github.com/doherty-labs/health-app-demo/bWFpbgo/d2ViLWFwcC9zdGFmZgo) |
| ✅ | [**github.com/doinel1a/vite-three-js**](https://github.com/doinel1a/vite-three-js/tree/main/) | 11s | [Data](./data/github.com/doinel1a/vite-three-js/bWFpbgo/Cg) |
| ✅ | [**github.com/dojonode/taiko-node-dashboard**](https://github.com/dojonode/taiko-node-dashboard/tree/main/) | 7s | [Data](./data/github.com/dojonode/taiko-node-dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/domtronn/nuzlocke.app**](https://github.com/domtronn/nuzlocke.app/tree/main/) | 10s | [Data](./data/github.com/domtronn/nuzlocke.app/bWFpbgo/Cg) |
| ✅ | [**github.com/dopex-io/elvarg**](https://github.com/dopex-io/elvarg/tree/develop/apps%2Fdapp) (`apps/dapp`) | 48s | [Data](./data/github.com/dopex-io/elvarg/ZGV2ZWxvcAo/YXBwcy9kYXBwCg) |
| ✅ | [**github.com/dopex-io/elvarg**](https://github.com/dopex-io/elvarg/tree/develop/packages%2Fui) (`packages/ui`) | 1m | [Data](./data/github.com/dopex-io/elvarg/ZGV2ZWxvcAo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/dorneanu/gocial**](https://github.com/dorneanu/gocial/tree/main/server%2Fhtml) (`server/html`) | 9s | [Data](./data/github.com/dorneanu/gocial/bWFpbgo/c2VydmVyL2h0bWwK) |
| ✅ | [**github.com/dosco/graphjin**](https://github.com/dosco/graphjin/tree/master/website) (`website`) | 10s | [Data](./data/github.com/dosco/graphjin/bWFzdGVyCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/dosm-malaysia/aksara-front**](https://github.com/dosm-malaysia/aksara-front/tree/main/) | 10s | [Data](./data/github.com/dosm-malaysia/aksara-front/bWFpbgo/Cg) |
| ✅ | [**github.com/dotCMS/core**](https://github.com/dotCMS/core/tree/master/ema%2Fnextjs) (`ema/nextjs`) | 51s | [Data](./data/github.com/dotCMS/core/bWFzdGVyCg/ZW1hL25leHRqcwo) |
| ✅ | [**github.com/dotCMS/core**](https://github.com/dotCMS/core/tree/master/ema%2Fvuejs) (`ema/vuejs`) | 43s | [Data](./data/github.com/dotCMS/core/bWFzdGVyCg/ZW1hL3Z1ZWpzCg) |
| ✅ | [**github.com/dotansimha/graphql-code-generator**](https://github.com/dotansimha/graphql-code-generator/tree/master/website) (`website`) | 15s | [Data](./data/github.com/dotansimha/graphql-code-generator/bWFzdGVyCg/d2Vic2l0ZQo) |
| ❌ | [**github.com/dotansimha/graphql-yoga**](https://github.com/dotansimha/graphql-yoga/tree/main/website) (`website`) | *n/a* | [Data](./data/github.com/dotansimha/graphql-yoga/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/dotfortun/wormroller**](https://github.com/dotfortun/wormroller/tree/main/) | 5s | [Data](./data/github.com/dotfortun/wormroller/bWFpbgo/Cg) |
| ✅ | [**github.com/dpb587/dpb587.me**](https://github.com/dpb587/dpb587.me/tree/master/themes%2Fdpb587-20210315a) (`themes/dpb587-20210315a`) | 8s | [Data](./data/github.com/dpb587/dpb587.me/bWFzdGVyCg/dGhlbWVzL2RwYjU4Ny0yMDIxMDMxNWEK) |
| ✅ | [**github.com/drehimself/gridsome-portfolio-starter**](https://github.com/drehimself/gridsome-portfolio-starter/tree/master/) | 1m 43s | [Data](./data/github.com/drehimself/gridsome-portfolio-starter/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/droidconKE/droidconKE2022Web**](https://github.com/droidconKE/droidconKE2022Web/tree/dev/) | *n/a* | [Data](./data/github.com/droidconKE/droidconKE2022Web/ZGV2Cg/Cg) |
| ✅ | [**github.com/drunkenvalley/no-pressure**](https://github.com/drunkenvalley/no-pressure/tree/dev/) | 9s | [Data](./data/github.com/drunkenvalley/no-pressure/ZGV2Cg/Cg) |
| ✅ | [**github.com/dscnitrourkela/project-raisin**](https://github.com/dscnitrourkela/project-raisin/tree/main/) | 10s | [Data](./data/github.com/dscnitrourkela/project-raisin/bWFpbgo/Cg) |
| ✅ | [**github.com/dsensei/sql-agent**](https://github.com/dsensei/sql-agent/tree/main/) | 7s | [Data](./data/github.com/dsensei/sql-agent/bWFpbgo/Cg) |
| ✅ | [**github.com/dtm-labs/dtm**](https://github.com/dtm-labs/dtm/tree/main/admin) (`admin`) | 10s | [Data](./data/github.com/dtm-labs/dtm/bWFpbgo/YWRtaW4K) |
| ✅ | [**github.com/dubinc/dub**](https://github.com/dubinc/dub/tree/main/apps%2Fweb) (`apps/web`) | 19s | [Data](./data/github.com/dubinc/dub/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/dubinc/dub**](https://github.com/dubinc/dub/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 1m 7s | [Data](./data/github.com/dubinc/dub/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/dubinc/dub**](https://github.com/dubinc/dub/tree/main/packages%2Fui) (`packages/ui`) | 51s | [Data](./data/github.com/dubinc/dub/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/dust-tt/dust**](https://github.com/dust-tt/dust/tree/main/docs) (`docs`) | 14s | [Data](./data/github.com/dust-tt/dust/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/dust-tt/dust**](https://github.com/dust-tt/dust/tree/main/front) (`front`) | 11s | [Data](./data/github.com/dust-tt/dust/bWFpbgo/ZnJvbnQK) |
| ✅ | [**github.com/dust-tt/dust**](https://github.com/dust-tt/dust/tree/main/sparkle) (`sparkle`) | 12s | [Data](./data/github.com/dust-tt/dust/bWFpbgo/c3BhcmtsZQo) |
| ✅ | [**github.com/e2b-dev/E2B**](https://github.com/e2b-dev/E2B/tree/main/apps%2Fdocs) (`apps/docs`) | 44s | [Data](./data/github.com/e2b-dev/E2B/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/earthcomfy/lets-chat**](https://github.com/earthcomfy/lets-chat/tree/main/frontend) (`frontend`) | 8s | [Data](./data/github.com/earthcomfy/lets-chat/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/easypanel-io/website**](https://github.com/easypanel-io/website/tree/main/) | 13s | [Data](./data/github.com/easypanel-io/website/bWFpbgo/Cg) |
| ✅ | [**github.com/easysoft/zui**](https://github.com/easysoft/zui/tree/main/) | 20s | [Data](./data/github.com/easysoft/zui/bWFpbgo/Cg) |
| ✅ | [**github.com/ecklf/tailwindcss-radix**](https://github.com/ecklf/tailwindcss-radix/tree/main/demo) (`demo`) | 7s | [Data](./data/github.com/ecklf/tailwindcss-radix/bWFpbgo/ZGVtbwo) |
| ✅ | [**github.com/eduardconstantin/azure-cloud-exams**](https://github.com/eduardconstantin/azure-cloud-exams/tree/main/) | 7s | [Data](./data/github.com/eduardconstantin/azure-cloud-exams/bWFpbgo/Cg) |
| ✅ | [**github.com/edwintantawi/airbnb-web-clone**](https://github.com/edwintantawi/airbnb-web-clone/tree/main/) | 12s | [Data](./data/github.com/edwintantawi/airbnb-web-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/edwintantawi/portfolio-website**](https://github.com/edwintantawi/portfolio-website/tree/main/) | 7s | [Data](./data/github.com/edwintantawi/portfolio-website/bWFpbgo/Cg) |
| ✅ | [**github.com/eels/pbbg**](https://github.com/eels/pbbg/tree/main/applications%2Fweb) (`applications/web`) | 4m 18s | [Data](./data/github.com/eels/pbbg/bWFpbgo/YXBwbGljYXRpb25zL3dlYgo) |
| ✅ | [**github.com/eels/pbbg**](https://github.com/eels/pbbg/tree/main/packages%2Fstorybook) (`packages/storybook`) | 4m 10s | [Data](./data/github.com/eels/pbbg/bWFpbgo/cGFja2FnZXMvc3Rvcnlib29rCg) |
| ✅ | [**github.com/effector/effector**](https://github.com/effector/effector/tree/master/documentation) (`documentation`) | 32s | [Data](./data/github.com/effector/effector/bWFzdGVyCg/ZG9jdW1lbnRhdGlvbgo) |
| ✅ | [**github.com/efkann/pssh-extractor**](https://github.com/efkann/pssh-extractor/tree/main/) | 6s | [Data](./data/github.com/efkann/pssh-extractor/bWFpbgo/Cg) |
| ✅ | [**github.com/eggheadio/scriptkit.com**](https://github.com/eggheadio/scriptkit.com/tree/main/) | 10s | [Data](./data/github.com/eggheadio/scriptkit.com/bWFpbgo/Cg) |
| ✅ | [**github.com/egrzeszczak/nuxt-3-notion-blog**](https://github.com/egrzeszczak/nuxt-3-notion-blog/tree/main/) | 22s | [Data](./data/github.com/egrzeszczak/nuxt-3-notion-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/eideehi/sd-webui-better-prompt**](https://github.com/eideehi/sd-webui-better-prompt/tree/main/) | 7s | [Data](./data/github.com/eideehi/sd-webui-better-prompt/bWFpbgo/Cg) |
| ✅ | [**github.com/ekmas/higher-lower**](https://github.com/ekmas/higher-lower/tree/main/) | 13s | [Data](./data/github.com/ekmas/higher-lower/bWFpbgo/Cg) |
| ✅ | [**github.com/ekmas/neobrutalism-components**](https://github.com/ekmas/neobrutalism-components/tree/main/) | 7s | [Data](./data/github.com/ekmas/neobrutalism-components/bWFpbgo/Cg) |
| ✅ | [**github.com/ekurt/react-todo-app**](https://github.com/ekurt/react-todo-app/tree/main/) | 9s | [Data](./data/github.com/ekurt/react-todo-app/bWFpbgo/Cg) |
| ✅ | [**github.com/ekzhang/ekzhang.github.io**](https://github.com/ekzhang/ekzhang.github.io/tree/main/) | 10s | [Data](./data/github.com/ekzhang/ekzhang.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/el3um4s/memento-svelte-electron-typescript**](https://github.com/el3um4s/memento-svelte-electron-typescript/tree/main/) | 7s | [Data](./data/github.com/el3um4s/memento-svelte-electron-typescript/bWFpbgo/Cg) |
| ✅ | [**github.com/elevenvac/personal-website**](https://github.com/elevenvac/personal-website/tree/master/) | 1m 9s | [Data](./data/github.com/elevenvac/personal-website/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/elhajuojy/Foxrander**](https://github.com/elhajuojy/Foxrander/tree/main_dev/) | 9s | [Data](./data/github.com/elhajuojy/Foxrander/bWFpbl9kZXYK/Cg) |
| ✅ | [**github.com/elhakimyasya/Webium-Blogger-Theme**](https://github.com/elhakimyasya/Webium-Blogger-Theme/tree/dev/) | 14s | [Data](./data/github.com/elhakimyasya/Webium-Blogger-Theme/ZGV2Cg/Cg) |
| ✅ | [**github.com/elhakimyasya/thumbs**](https://github.com/elhakimyasya/thumbs/tree/master/) | 13s | [Data](./data/github.com/elhakimyasya/thumbs/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/elie222/inbox-zero**](https://github.com/elie222/inbox-zero/tree/main/apps%2Fweb) (`apps/web`) | 46s | [Data](./data/github.com/elie222/inbox-zero/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/elixir-cloud-aai/web-components**](https://github.com/elixir-cloud-aai/web-components/tree/master/) | 8s | [Data](./data/github.com/elixir-cloud-aai/web-components/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/elixirschool/school_house**](https://github.com/elixirschool/school_house/tree/main/assets) (`assets`) | 6s | [Data](./data/github.com/elixirschool/school_house/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/elliothershberg/interactive-mutation-browser**](https://github.com/elliothershberg/interactive-mutation-browser/tree/main/) | 7s | [Data](./data/github.com/elliothershberg/interactive-mutation-browser/bWFpbgo/Cg) |
| ✅ | [**github.com/elonen/clapshot**](https://github.com/elonen/clapshot/tree/master/client) (`client`) | 5s | [Data](./data/github.com/elonen/clapshot/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/elreco/vue-tailwind-datepicker**](https://github.com/elreco/vue-tailwind-datepicker/tree/main/) | 8s | [Data](./data/github.com/elreco/vue-tailwind-datepicker/bWFpbgo/Cg) |
| ✅ | [**github.com/elsoul/skeet-app**](https://github.com/elsoul/skeet-app/tree/main/) | 48s | [Data](./data/github.com/elsoul/skeet-app/bWFpbgo/Cg) |
| ✅ | [**github.com/elsoul/skeet-solana-mobile-stack**](https://github.com/elsoul/skeet-solana-mobile-stack/tree/main/) | 8m 12s | [Data](./data/github.com/elsoul/skeet-solana-mobile-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/elsoul/skeet-solana-mobile-stack**](https://github.com/elsoul/skeet-solana-mobile-stack/tree/main/webapp) (`webapp`) | 43s | [Data](./data/github.com/elsoul/skeet-solana-mobile-stack/bWFpbgo/d2ViYXBwCg) |
| ✅ | [**github.com/emerald-dao/1-non-fungible-token**](https://github.com/emerald-dao/1-non-fungible-token/tree/main/) | 5s | [Data](./data/github.com/emerald-dao/1-non-fungible-token/bWFpbgo/Cg) |
| ✅ | [**github.com/emigdio821/the-secret-chat**](https://github.com/emigdio821/the-secret-chat/tree/main/) | 7s | [Data](./data/github.com/emigdio821/the-secret-chat/bWFpbgo/Cg) |
| ✅ | [**github.com/eminbasbayan/food-ordering-udemy**](https://github.com/eminbasbayan/food-ordering-udemy/tree/main/) | 9s | [Data](./data/github.com/eminbasbayan/food-ordering-udemy/bWFpbgo/Cg) |
| ✅ | [**github.com/emmajane1313/inarisynth**](https://github.com/emmajane1313/inarisynth/tree/main/) | 9s | [Data](./data/github.com/emmajane1313/inarisynth/bWFpbgo/Cg) |
| ✅ | [**github.com/endcloud/bbhouse-tauri**](https://github.com/endcloud/bbhouse-tauri/tree/master/) | 9s | [Data](./data/github.com/endcloud/bbhouse-tauri/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/eng-gabrielscardoso/eng-gabrielscardoso.github.io**](https://github.com/eng-gabrielscardoso/eng-gabrielscardoso.github.io/tree/main/) | 7s | [Data](./data/github.com/eng-gabrielscardoso/eng-gabrielscardoso.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/engageintellect/sveltekit-landing-daisy**](https://github.com/engageintellect/sveltekit-landing-daisy/tree/main/) | 8s | [Data](./data/github.com/engageintellect/sveltekit-landing-daisy/bWFpbgo/Cg) |
| ✅ | [**github.com/engineerapart/TheRemoteFreelancer**](https://github.com/engineerapart/TheRemoteFreelancer/tree/master/docs) (`docs`) | 8s | [Data](./data/github.com/engineerapart/TheRemoteFreelancer/bWFzdGVyCg/ZG9jcwo) |
| ❌ | [**github.com/enisdenjo/graphql-ws**](https://github.com/enisdenjo/graphql-ws/tree/master/website) (`website`) | *n/a* | [Data](./data/github.com/enisdenjo/graphql-ws/bWFzdGVyCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/enjidev/enji.dev**](https://github.com/enjidev/enji.dev/tree/main/apps%2Fenji.dev) (`apps/enji.dev`) | 19s | [Data](./data/github.com/enjidev/enji.dev/bWFpbgo/YXBwcy9lbmppLmRldgo) |
| ✅ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/astro) (`astro`) | 21s | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/YXN0cm8K) |
| ✅ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/gatsby) (`gatsby`) | 7s | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/Z2F0c2J5Cg) |
| ✅ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/next) (`next`) | 7s | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/bmV4dAo) |
| ✅ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/next-middleware) (`next-middleware`) | 7s | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/bmV4dC1taWRkbGV3YXJlCg) |
| ❌ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/nuxt) (`nuxt`) | *n/a* | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/bnV4dAo) |
| ✅ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/remix) (`remix`) | 7s | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/cmVtaXgK) |
| ✅ | [**github.com/enterspeedhq/enterspeed-demos**](https://github.com/enterspeedhq/enterspeed-demos/tree/master/sveltekit) (`sveltekit`) | 7s | [Data](./data/github.com/enterspeedhq/enterspeed-demos/bWFzdGVyCg/c3ZlbHRla2l0Cg) |
| ✅ | [**github.com/enzonotario/esjs-dolar-api**](https://github.com/enzonotario/esjs-dolar-api/tree/main/) | 32s | [Data](./data/github.com/enzonotario/esjs-dolar-api/bWFpbgo/Cg) |
| ✅ | [**github.com/epicmaxco/vuestic-admin**](https://github.com/epicmaxco/vuestic-admin/tree/master/) | 10s | [Data](./data/github.com/epicmaxco/vuestic-admin/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/epicweb-dev/epic-stack**](https://github.com/epicweb-dev/epic-stack/tree/main/) | 9s | [Data](./data/github.com/epicweb-dev/epic-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/eporsche/daybreak**](https://github.com/eporsche/daybreak/tree/master/) | 9s | [Data](./data/github.com/eporsche/daybreak/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/erenkulaksiz/Notal**](https://github.com/erenkulaksiz/Notal/tree/master/notal-ts) (`notal-ts`) | 10s | [Data](./data/github.com/erenkulaksiz/Notal/bWFzdGVyCg/bm90YWwtdHMK) |
| ✅ | [**github.com/ericrisco/twitch-chat-toxicity**](https://github.com/ericrisco/twitch-chat-toxicity/tree/main/) | 30s | [Data](./data/github.com/ericrisco/twitch-chat-toxicity/bWFpbgo/Cg) |
| ✅ | [**github.com/erikwibowo/Laravel-Brive**](https://github.com/erikwibowo/Laravel-Brive/tree/master/) | 8s | [Data](./data/github.com/erikwibowo/Laravel-Brive/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/erxes/erxes**](https://github.com/erxes/erxes/tree/master/exm-web) (`exm-web`) | 15s | [Data](./data/github.com/erxes/erxes/bWFzdGVyCg/ZXhtLXdlYgo) |
| ✅ | [**github.com/erxes/erxes**](https://github.com/erxes/erxes/tree/master/pos) (`pos`) | 15s | [Data](./data/github.com/erxes/erxes/bWFzdGVyCg/cG9zCg) |
| ✅ | [**github.com/escrin/escrin**](https://github.com/escrin/escrin/tree/main/website) (`website`) | 13s | [Data](./data/github.com/escrin/escrin/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/estebangarcia21/csfhs**](https://github.com/estebangarcia21/csfhs/tree/master/) | 9s | [Data](./data/github.com/estebangarcia21/csfhs/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/etherCorps/SK-Redis-SessionManager**](https://github.com/etherCorps/SK-Redis-SessionManager/tree/master/docs) (`docs`) | 24s | [Data](./data/github.com/etherCorps/SK-Redis-SessionManager/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/ethereum/sourcify**](https://github.com/ethereum/sourcify/tree/staging/ui) (`ui`) | 10s | [Data](./data/github.com/ethereum/sourcify/c3RhZ2luZwo/dWkK) |
| ✅ | [**github.com/etherspot/eip1271-website**](https://github.com/etherspot/eip1271-website/tree/develop/) | 8s | [Data](./data/github.com/etherspot/eip1271-website/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/ethibox/ethibox**](https://github.com/ethibox/ethibox/tree/master/) | 5s | [Data](./data/github.com/ethibox/ethibox/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/euxzy/portfolio**](https://github.com/euxzy/portfolio/tree/main/) | 11s | [Data](./data/github.com/euxzy/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/05__INSTALLING-TAILWIND%2Fdollarholler) (`05__INSTALLING-TAILWIND/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MDVfX0lOU1RBTExJTkctVEFJTFdJTkQvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/06__LINTING%2Fdollarholler) (`06__LINTING/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MDZfX0xJTlRJTkcvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/07__THEME-ELEMENTS%2Fdollarholler) (`07__THEME-ELEMENTS/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MDdfX1RIRU1FLUVMRU1FTlRTL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/08__ROUTES%2Fdollarholler) (`08__ROUTES/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MDhfX1JPVVRFUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/09__LAYOUTS%2Fdollarholler) (`09__LAYOUTS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MDlfX0xBWU9VVFMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/100__UPDATE-PASSWORD%2Fdollarholler) (`100__UPDATE-PASSWORD/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTAwX19VUERBVEUtUEFTU1dPUkQvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/101__PROTECTING-ROUTES%2Fdollarholler) (`101__PROTECTING-ROUTES/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTAxX19QUk9URUNUSU5HLVJPVVRFUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/10__ALIASES%2Fdollarholler) (`10__ALIASES/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTBfX0FMSUFTRVMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/11__DASHBOARD%2Fdollarholler) (`11__DASHBOARD/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTFfX0RBU0hCT0FSRC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/12__CURRENT-NAV%2Fdollarholler) (`12__CURRENT-NAV/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTJfX0NVUlJFTlQtTkFWL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/13__RESPONSIVE-DASHBOARD%2Fdollarholler) (`13__RESPONSIVE-DASHBOARD/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTNfX1JFU1BPTlNJVkUtREFTSEJPQVJEL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/14__INVOICE-LIST%2Fdollarholler) (`14__INVOICE-LIST/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTRfX0lOVk9JQ0UtTElTVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/15__RESPONSIVE-INVOICE-LIST%2Fdollarholler) (`15__RESPONSIVE-INVOICE-LIST/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTVfX1JFU1BPTlNJVkUtSU5WT0lDRS1MSVNUL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/16__GLOBAL-TYPES%2Fdollarholler) (`16__GLOBAL-TYPES/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTZfX0dMT0JBTC1UWVBFUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/17__SEED-DATA-STORES%2Fdollarholler) (`17__SEED-DATA-STORES/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTdfX1NFRUQtREFUQS1TVE9SRVMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/18__INVOICE-TOTAL%2Fdollarholler) (`18__INVOICE-TOTAL/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MThfX0lOVk9JQ0UtVE9UQUwvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/19__SMART-TAGS%2Fdollarholler) (`19__SMART-TAGS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MTlfX1NNQVJULVRBR1MvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/20__ADDITIONAL-MENU-OPTIONS%2Fdollarholler) (`20__ADDITIONAL-MENU-OPTIONS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjBfX0FERElUSU9OQUwtTUVOVS1PUFRJT05TL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/21__PAGE-STATES-INVOICE-LIST%2Fdollarholler) (`21__PAGE-STATES-INVOICE-LIST/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjFfX1BBR0UtU1RBVEVTLUlOVk9JQ0UtTElTVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/22__PORTAL%2Fdollarholler) (`22__PORTAL/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjJfX1BPUlRBTC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/23__STYLING-MODAL%2Fdollarholler) (`23__STYLING-MODAL/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjNfX1NUWUxJTkctTU9EQUwvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/24__STYLING-SLIDE-OUT-FORM%2Fdollarholler) (`24__STYLING-SLIDE-OUT-FORM/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjRfX1NUWUxJTkctU0xJREUtT1VULUZPUk0vZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/25__ADD-INVOICE-FORM%2Fdollarholler) (`25__ADD-INVOICE-FORM/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjVfX0FERC1JTlZPSUNFLUZPUk0vZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/26__STYLE-LINE-ITEMS%2Fdollarholler) (`26__STYLE-LINE-ITEMS/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjZfX1NUWUxFLUxJTkUtSVRFTVMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/27__ADDING-REMOVING-LINE-ITEMS%2Fdollarholler) (`27__ADDING-REMOVING-LINE-ITEMS/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjdfX0FERElORy1SRU1PVklORy1MSU5FLUlURU1TL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/28__SMART-LINE-ITEMS%2Fdollarholler) (`28__SMART-LINE-ITEMS/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjhfX1NNQVJULUxJTkUtSVRFTVMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/29__SUBTOTAL-DISCOUNT-TOTAL%2Fdollarholler) (`29__SUBTOTAL-DISCOUNT-TOTAL/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MjlfX1NVQlRPVEFMLURJU0NPVU5ULVRPVEFML2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/30__INLINE-CLIENT-FORM%2Fdollarholler) (`30__INLINE-CLIENT-FORM/dollarholler`) | 9s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzBfX0lOTElORS1DTElFTlQtRk9STS9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/31__SEED-CLIENTS%2Fdollarholler) (`31__SEED-CLIENTS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzFfX1NFRUQtQ0xJRU5UUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/32__INVOICE-FORM-VALIDATION%2Fdollarholler) (`32__INVOICE-FORM-VALIDATION/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzJfX0lOVk9JQ0UtRk9STS1WQUxJREFUSU9OL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/33__ADDITIONAL-VALIDATION%2Fdollarholler) (`33__ADDITIONAL-VALIDATION/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzNfX0FERElUSU9OQUwtVkFMSURBVElPTi9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/34__ADD-INVOICE%2Fdollarholler) (`34__ADD-INVOICE/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzRfX0FERC1JTlZPSUNFL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/35__EDIT-INVOICE%2Fdollarholler) (`35__EDIT-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzVfX0VESVQtSU5WT0lDRS9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/36__CLEAN-UP-BUG-SQUASHING%2Fdollarholler) (`36__CLEAN-UP-BUG-SQUASHING/dollarholler`) | 9s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzZfX0NMRUFOLVVQLUJVRy1TUVVBU0hJTkcvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/37__INVOICE-FORM-RESPONSIVE%2Fdollarholler) (`37__INVOICE-FORM-RESPONSIVE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzdfX0lOVk9JQ0UtRk9STS1SRVNQT05TSVZFL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/38__SNACKBAR%2Fdollarholler) (`38__SNACKBAR/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzhfX1NOQUNLQkFSL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/39__INDIVIDUAL-INVOICE%2Fdollarholler) (`39__INDIVIDUAL-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/MzlfX0lORElWSURVQUwtSU5WT0lDRS9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/40__STYLE-INDIVIDUAL-INVOICE%2Fdollarholler) (`40__STYLE-INDIVIDUAL-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDBfX1NUWUxFLUlORElWSURVQUwtSU5WT0lDRS9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/41__INDIVIDUAL-INVOICE-DYNAMIC%2Fdollarholler) (`41__INDIVIDUAL-INVOICE-DYNAMIC/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDFfX0lORElWSURVQUwtSU5WT0lDRS1EWU5BTUlDL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/42__UPDATE-SETTINGS%2Fdollarholler) (`42__UPDATE-SETTINGS/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDJfX1VQREFURS1TRVRUSU5HUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/43__MARKDOWN%2Fdollarholler) (`43__MARKDOWN/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDNfX01BUktET1dOL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/44__PRINT-INVOICE%2Fdollarholler) (`44__PRINT-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDRfX1BSSU5ULUlOVk9JQ0UvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/45__COPY-LINK%2Fdollarholler) (`45__COPY-LINK/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDVfX0NPUFktTElOSy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/46__RESPONSIVE-INVOICE%2Fdollarholler) (`46__RESPONSIVE-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDZfX1JFU1BPTlNJVkUtSU5WT0lDRS9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/47__PRINT-STYLESHEET%2Fdollarholler) (`47__PRINT-STYLESHEET/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDdfX1BSSU5ULVNUWUxFU0hFRVQvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/48__THANKS%2Fdollarholler) (`48__THANKS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDhfX1RIQU5LUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/49__ERROR%2Fdollarholler) (`49__ERROR/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NDlfX0VSUk9SL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/50__CLIENT-LIST%2Fdollarholler) (`50__CLIENT-LIST/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTBfX0NMSUVOVC1MSVNUL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/51__CLIENT-LIST-RESPONSIVE%2Fdollarholler) (`51__CLIENT-LIST-RESPONSIVE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTFfX0NMSUVOVC1MSVNULVJFU1BPTlNJVkUvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/52__RECEIVED-BALANCE%2Fdollarholler) (`52__RECEIVED-BALANCE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTJfX1JFQ0VJVkVELUJBTEFOQ0UvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/53__BLANK-CLIENT%2Fdollarholler) (`53__BLANK-CLIENT/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTNfX0JMQU5LLUNMSUVOVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/54__NEW-CLIENT%2Fdollarholler) (`54__NEW-CLIENT/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTRfX05FVy1DTElFTlQvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/55__EDIT-CLIENT%2Fdollarholler) (`55__EDIT-CLIENT/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTVfX0VESVQtQ0xJRU5UL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/56__INDIVIDUAL-CLIENT%2Fdollarholler) (`56__INDIVIDUAL-CLIENT/dollarholler`) | 9s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTZfX0lORElWSURVQUwtQ0xJRU5UL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/57__CALCLUATE-CLIENT-SUMMARY-BLOCK%2Fdollarholler) (`57__CALCLUATE-CLIENT-SUMMARY-BLOCK/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTdfX0NBTENMVUFURS1DTElFTlQtU1VNTUFSWS1CTE9DSy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/58__STYLING-SETTINGS%2Fdollarholler) (`58__STYLING-SETTINGS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NThfX1NUWUxJTkctU0VUVElOR1MvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/59__LOGIN%2Fdollarholler) (`59__LOGIN/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NTlfX0xPR0lOL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/60__LOGOUT%2Fdollarholler) (`60__LOGOUT/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjBfX0xPR09VVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/61__REMAINING-AUTH%2Fdollarholler) (`61__REMAINING-AUTH/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjFfX1JFTUFJTklORy1BVVRIL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/62__ANIMATING-SEARCH%2Fdollarholler) (`62__ANIMATING-SEARCH/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjJfX0FOSU1BVElORy1TRUFSQ0gvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/63__ANIMATING-SLIDE-PANEL%2Fdollarholler) (`63__ANIMATING-SLIDE-PANEL/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjNfX0FOSU1BVElORy1TTElERS1QQU5FTC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/64__PAGE-TRANSITION%2Fdollarholler) (`64__PAGE-TRANSITION/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjRfX1BBR0UtVFJBTlNJVElPTi9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/65__CLICK-OUTSIDE%2Fdollarholler) (`65__CLICK-OUTSIDE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjVfX0NMSUNLLU9VVFNJREUvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/66__ADDITIONAL-OPTIONS-INVOICES%2Fdollarholler) (`66__ADDITIONAL-OPTIONS-INVOICES/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjZfX0FERElUSU9OQUwtT1BUSU9OUy1JTlZPSUNFUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/67__STYLING-OPTIONS%2Fdollarholler) (`67__STYLING-OPTIONS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjdfX1NUWUxJTkctT1BUSU9OUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/68__CANCEL%2Fdollarholler) (`68__CANCEL/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjhfX0NBTkNFTC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/69__ADDITIONAL-OPTIONS-MOBILE%2Fdollarholler) (`69__ADDITIONAL-OPTIONS-MOBILE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NjlfX0FERElUSU9OQUwtT1BUSU9OUy1NT0JJTEUvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/70__HANDLING-TOUCH-SCREENS%2Fdollarholler) (`70__HANDLING-TOUCH-SCREENS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NzBfX0hBTkRMSU5HLVRPVUNILVNDUkVFTlMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/71__ADDITIONAL-OPTIONS-CLIENTS%2Fdollarholler) (`71__ADDITIONAL-OPTIONS-CLIENTS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NzFfX0FERElUSU9OQUwtT1BUSU9OUy1DTElFTlRTL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/72__SUPABASE%2Fdollarholler) (`72__SUPABASE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NzJfX1NVUEFCQVNFL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/73__ENV-KEYS%2Fdollarholler) (`73__ENV-KEYS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/NzNfX0VOVi1LRVlTL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/80__POPULATING-DB%2Fdollarholler) (`80__POPULATING-DB/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODBfX1BPUFVMQVRJTkctREIvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/81__DISPLAYING-INVOICES%2Fdollarholler) (`81__DISPLAYING-INVOICES/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODFfX0RJU1BMQVlJTkctSU5WT0lDRVMvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/82__DISPLAYING-CLIENTS%2Fdollarholler) (`82__DISPLAYING-CLIENTS/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODJfX0RJU1BMQVlJTkctQ0xJRU5UUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/83__ADDING-A-CLIENT%2Fdollarholler) (`83__ADDING-A-CLIENT/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODNfX0FERElORy1BLUNMSUVOVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/84__ADDING-AN-INVOICE%2Fdollarholler) (`84__ADDING-AN-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODRfX0FERElORy1BTi1JTlZPSUNFL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/85__EDIT-CLIENT%2Fdollarholler) (`85__EDIT-CLIENT/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODVfX0VESVQtQ0xJRU5UL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/86__EDIT-INVOICE%2Fdollarholler) (`86__EDIT-INVOICE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODZfX0VESVQtSU5WT0lDRS9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/87__DELETING-INVOICE%2Fdollarholler) (`87__DELETING-INVOICE/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODdfX0RFTEVUSU5HLUlOVk9JQ0UvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/88__DELETING-CLIENT%2Fdollarholler) (`88__DELETING-CLIENT/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODhfX0RFTEVUSU5HLUNMSUVOVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/89__SEARCH-INVOICES%2Fdollarholler) (`89__SEARCH-INVOICES/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/ODlfX1NFQVJDSC1JTlZPSUNFUy9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/90__SEARCH-CLIENTS%2Fdollarholler) (`90__SEARCH-CLIENTS/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTBfX1NFQVJDSC1DTElFTlRTL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/91__HANDLE-SIGNUP%2Fdollarholler) (`91__HANDLE-SIGNUP/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTFfX0hBTkRMRS1TSUdOVVAvZG9sbGFyaG9sbGVyCg) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/92__LOGIN%2Fdollarholler) (`92__LOGIN/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTJfX0xPR0lOL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/93__LOGOUT%2Fdollarholler) (`93__LOGOUT/dollarholler`) | 8s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTNfX0xPR09VVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/94__PROTECT-ROUTES-CLIENT-SIDE%2Fdollarholler) (`94__PROTECT-ROUTES-CLIENT-SIDE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTRfX1BST1RFQ1QtUk9VVEVTLUNMSUVOVC1TSURFL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/95__PROTECT-SERVER-SIDE-PART-1%2Fdollarholler) (`95__PROTECT-SERVER-SIDE-PART-1/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTVfX1BST1RFQ1QtU0VSVkVSLVNJREUtUEFSVC0xL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/96__PROTECT-SERVER-SIDE-PART-2%2Fdollarholler) (`96__PROTECT-SERVER-SIDE-PART-2/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTZfX1BST1RFQ1QtU0VSVkVSLVNJREUtUEFSVC0yL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/97__LOGIN-SERVER-SIDE%2Fdollarholler) (`97__LOGIN-SERVER-SIDE/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTdfX0xPR0lOLVNFUlZFUi1TSURFL2RvbGxhcmhvbGxlcgo) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/98__LOGOUT%2Fdollarholler) (`98__LOGOUT/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OThfX0xPR09VVC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everythingsvelte/dollarholler**](https://github.com/everythingsvelte/dollarholler/tree/main/99__FORGOT-PASSWORD%2Fdollarholler) (`99__FORGOT-PASSWORD/dollarholler`) | 7s | [Data](./data/github.com/everythingsvelte/dollarholler/bWFpbgo/OTlfX0ZPUkdPVC1QQVNTV09SRC9kb2xsYXJob2xsZXIK) |
| ✅ | [**github.com/everywall/ladder**](https://github.com/everywall/ladder/tree/main/) | 9s | [Data](./data/github.com/everywall/ladder/bWFpbgo/Cg) |
| ✅ | [**github.com/evoactivity/ember-fast-marquee**](https://github.com/evoactivity/ember-fast-marquee/tree/main/docsSrc) (`docsSrc`) | 5s | [Data](./data/github.com/evoactivity/ember-fast-marquee/bWFpbgo/ZG9jc1NyYwo) |
| ✅ | [**github.com/excalith/excalith-start-page**](https://github.com/excalith/excalith-start-page/tree/main/) | 8s | [Data](./data/github.com/excalith/excalith-start-page/bWFpbgo/Cg) |
| ❌ | [**github.com/executablebooks/myst-theme**](https://github.com/executablebooks/myst-theme/tree/main/styles) (`styles`) | *n/a* | [Data](./data/github.com/executablebooks/myst-theme/bWFpbgo/c3R5bGVzCg) |
| ✅ | [**github.com/executablebooks/myst-theme**](https://github.com/executablebooks/myst-theme/tree/main/themes%2Farticle) (`themes/article`) | 8s | [Data](./data/github.com/executablebooks/myst-theme/bWFpbgo/dGhlbWVzL2FydGljbGUK) |
| ✅ | [**github.com/executablebooks/myst-theme**](https://github.com/executablebooks/myst-theme/tree/main/themes%2Fbook) (`themes/book`) | 7s | [Data](./data/github.com/executablebooks/myst-theme/bWFpbgo/dGhlbWVzL2Jvb2sK) |
| ✅ | [**github.com/expo/expo**](https://github.com/expo/expo/tree/main/apps%2Frouter-e2e) (`apps/router-e2e`) | 32s | [Data](./data/github.com/expo/expo/bWFpbgo/YXBwcy9yb3V0ZXItZTJlCg) |
| ✅ | [**github.com/expo/expo**](https://github.com/expo/expo/tree/main/docs) (`docs`) | 2m 34s | [Data](./data/github.com/expo/expo/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/ez4o/image-resizer**](https://github.com/ez4o/image-resizer/tree/main/) | 6s | [Data](./data/github.com/ez4o/image-resizer/bWFpbgo/Cg) |
| ✅ | [**github.com/fabian-hiller/valibot**](https://github.com/fabian-hiller/valibot/tree/main/website) (`website`) | 25s | [Data](./data/github.com/fabian-hiller/valibot/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/facebook/lexical**](https://github.com/facebook/lexical/tree/main/packages%2Flexical-website) (`packages/lexical-website`) | 10s | [Data](./data/github.com/facebook/lexical/bWFpbgo/cGFja2FnZXMvbGV4aWNhbC13ZWJzaXRlCg) |
| ✅ | [**github.com/fairdataihub/analytics**](https://github.com/fairdataihub/analytics/tree/main/) | 9s | [Data](./data/github.com/fairdataihub/analytics/bWFpbgo/Cg) |
| ✅ | [**github.com/fairfield-programming/fairfield-programming.github.io**](https://github.com/fairfield-programming/fairfield-programming.github.io/tree/master/) | 8s | [Data](./data/github.com/fairfield-programming/fairfield-programming.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/fajar7xx/ecommerce-template-tailwind-1**](https://github.com/fajar7xx/ecommerce-template-tailwind-1/tree/main/) | 7s | [Data](./data/github.com/fajar7xx/ecommerce-template-tailwind-1/bWFpbgo/Cg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/eicoop) (`eicoop`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/ZWljb29wCg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2F_home) (`wasmegg/_home`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9faG9tZQo) |
| ❌ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2F_template) (`wasmegg/_template`) | *n/a* | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9fdGVtcGxhdGUK) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fartifact-explorer) (`wasmegg/artifact-explorer`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9hcnRpZmFjdC1leHBsb3Jlcgo) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fartifact-sandbox) (`wasmegg/artifact-sandbox`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9hcnRpZmFjdC1zYW5kYm94Cg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fconsumption-sheet) (`wasmegg/consumption-sheet`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9jb25zdW1wdGlvbi1zaGVldAo) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fenlightenment) (`wasmegg/enlightenment`) | 14s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9lbmxpZ2h0ZW5tZW50Cg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fevents) (`wasmegg/events`) | 13s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9ldmVudHMK) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Finventory-visualizer) (`wasmegg/inventory-visualizer`) | 11s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9pbnZlbnRvcnktdmlzdWFsaXplcgo) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Floot-analysis) (`wasmegg/loot-analysis`) | 11s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9sb290LWFuYWx5c2lzCg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Floot-simulator) (`wasmegg/loot-simulator`) | 11s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9sb290LXNpbXVsYXRvcgo) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fmission-list) (`wasmegg/mission-list`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9taXNzaW9uLWxpc3QK) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fpast-contracts) (`wasmegg/past-contracts`) | 11s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9wYXN0LWNvbnRyYWN0cwo) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fproto-explorer) (`wasmegg/proto-explorer`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9wcm90by1leHBsb3Jlcgo) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fresearches) (`wasmegg/researches`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9yZXNlYXJjaGVzCg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Frockets-tracker) (`wasmegg/rockets-tracker`) | 11s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9yb2NrZXRzLXRyYWNrZXIK) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fshell-company) (`wasmegg/shell-company`) | 11s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9zaGVsbC1jb21wYW55Cg) |
| ✅ | [**github.com/fanaticscripter/Egg**](https://github.com/fanaticscripter/Egg/tree/master/wasmegg%2Fsmart-assistant) (`wasmegg/smart-assistant`) | 12s | [Data](./data/github.com/fanaticscripter/Egg/bWFzdGVyCg/d2FzbWVnZy9zbWFydC1hc3Npc3RhbnQK) |
| ✅ | [**github.com/farideghbali/startup-website-template**](https://github.com/farideghbali/startup-website-template/tree/master/) | 6s | [Data](./data/github.com/farideghbali/startup-website-template/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/fayazara/logspot**](https://github.com/fayazara/logspot/tree/main/) | *n/a* | [Data](./data/github.com/fayazara/logspot/bWFpbgo/Cg) |
| ✅ | [**github.com/feature-sh/website**](https://github.com/feature-sh/website/tree/main/) | 10s | [Data](./data/github.com/feature-sh/website/bWFpbgo/Cg) |
| ✅ | [**github.com/febriadj/messaging-app**](https://github.com/febriadj/messaging-app/tree/master/) | 9s | [Data](./data/github.com/febriadj/messaging-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/feernandobraga/vitesvelctron**](https://github.com/feernandobraga/vitesvelctron/tree/main/) | 5s | [Data](./data/github.com/feernandobraga/vitesvelctron/bWFpbgo/Cg) |
| ✅ | [**github.com/feifyKike/webdev_portfolio**](https://github.com/feifyKike/webdev_portfolio/tree/main/) | 6s | [Data](./data/github.com/feifyKike/webdev_portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/felangel/bloc**](https://github.com/felangel/bloc/tree/master/docs) (`docs`) | 38s | [Data](./data/github.com/felangel/bloc/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/felixicaza/estelibuses**](https://github.com/felixicaza/estelibuses/tree/main/) | 24s | [Data](./data/github.com/felixicaza/estelibuses/bWFpbgo/Cg) |
| ✅ | [**github.com/felixmacaspac/felixmacaspac.dev**](https://github.com/felixmacaspac/felixmacaspac.dev/tree/master/) | 7s | [Data](./data/github.com/felixmacaspac/felixmacaspac.dev/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/fell-lucas/chrome-extension-template-preact-vite**](https://github.com/fell-lucas/chrome-extension-template-preact-vite/tree/main/) | 6s | [Data](./data/github.com/fell-lucas/chrome-extension-template-preact-vite/bWFpbgo/Cg) |
| ✅ | [**github.com/fhefh2015/Fast-GitHub**](https://github.com/fhefh2015/Fast-GitHub/tree/main/fast_github) (`fast_github`) | 14s | [Data](./data/github.com/fhefh2015/Fast-GitHub/bWFpbgo/ZmFzdF9naXRodWIK) |
| ❌ | [**github.com/fictionco/fiction**](https://github.com/fictionco/fiction/tree/dev/%40fiction%2Fplugin-admin) (`@fiction/plugin-admin`) | *n/a* | [Data](./data/github.com/fictionco/fiction/ZGV2Cg/QGZpY3Rpb24vcGx1Z2luLWFkbWluCg) |
| ❌ | [**github.com/fictionco/fiction**](https://github.com/fictionco/fiction/tree/dev/%40fiction%2Fplugin-sites) (`@fiction/plugin-sites`) | *n/a* | [Data](./data/github.com/fictionco/fiction/ZGV2Cg/QGZpY3Rpb24vcGx1Z2luLXNpdGVzCg) |
| ❌ | [**github.com/fictionco/fiction**](https://github.com/fictionco/fiction/tree/dev/%40fiction%2Fui) (`@fiction/ui`) | *n/a* | [Data](./data/github.com/fictionco/fiction/ZGV2Cg/QGZpY3Rpb24vdWkK) |
| ❌ | [**github.com/fictionco/fiction**](https://github.com/fictionco/fiction/tree/dev/%40fiction%2Fwww) (`@fiction/www`) | *n/a* | [Data](./data/github.com/fictionco/fiction/ZGV2Cg/QGZpY3Rpb24vd3d3Cg) |
| ❌ | [**github.com/filamentphp/filament**](https://github.com/filamentphp/filament/tree/3.x/docs-assets%2Fapp) (`docs-assets/app`) | *n/a* | [Data](./data/github.com/filamentphp/filament/My54Cg/ZG9jcy1hc3NldHMvYXBwCg) |
| ✅ | [**github.com/finkef/react-native-tailwind.macro**](https://github.com/finkef/react-native-tailwind.macro/tree/main/packages%2Freact-native-tailwind.macro) (`packages/react-native-tailwind.macro`) | 10s | [Data](./data/github.com/finkef/react-native-tailwind.macro/bWFpbgo/cGFja2FnZXMvcmVhY3QtbmF0aXZlLXRhaWx3aW5kLm1hY3JvCg) |
| ✅ | [**github.com/fiqryq/fiqry.dev**](https://github.com/fiqryq/fiqry.dev/tree/main/) | 10s | [Data](./data/github.com/fiqryq/fiqry.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/fiqryq/ui**](https://github.com/fiqryq/ui/tree/master/docs) (`docs`) | 11s | [Data](./data/github.com/fiqryq/ui/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/firebase/codelab-friendlychat-web**](https://github.com/firebase/codelab-friendlychat-web/tree/main/angularfire-start) (`angularfire-start`) | 10s | [Data](./data/github.com/firebase/codelab-friendlychat-web/bWFpbgo/YW5ndWxhcmZpcmUtc3RhcnQK) |
| ❌ | [**github.com/firecmsco/firecms**](https://github.com/firecmsco/firecms/tree/main/packages%2Ffirebase_firecms_pro) (`packages/firebase_firecms_pro`) | *n/a* | [Data](./data/github.com/firecmsco/firecms/bWFpbgo/cGFja2FnZXMvZmlyZWJhc2VfZmlyZWNtc19wcm8K) |
| ❌ | [**github.com/firecmsco/firecms**](https://github.com/firecmsco/firecms/tree/main/packages%2Ffirecms) (`packages/firecms`) | *n/a* | [Data](./data/github.com/firecmsco/firecms/bWFpbgo/cGFja2FnZXMvZmlyZWNtcwo) |
| ✅ | [**github.com/firecmsco/firecms**](https://github.com/firecmsco/firecms/tree/main/website) (`website`) | 2m 13s | [Data](./data/github.com/firecmsco/firecms/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/firezone/firezone**](https://github.com/firezone/firezone/tree/main/rust%2Fgui-client) (`rust/gui-client`) | 10s | [Data](./data/github.com/firezone/firezone/bWFpbgo/cnVzdC9ndWktY2xpZW50Cg) |
| ✅ | [**github.com/firezone/firezone**](https://github.com/firezone/firezone/tree/main/website) (`website`) | 12s | [Data](./data/github.com/firezone/firezone/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/fishuke/fastcord**](https://github.com/fishuke/fastcord/tree/master/) | 9s | [Data](./data/github.com/fishuke/fastcord/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/fjallnari/shadowtorch**](https://github.com/fjallnari/shadowtorch/tree/main/) | 8s | [Data](./data/github.com/fjallnari/shadowtorch/bWFpbgo/Cg) |
| ✅ | [**github.com/flavorly/vanilla-components**](https://github.com/flavorly/vanilla-components/tree/master/) | 11s | [Data](./data/github.com/flavorly/vanilla-components/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/flexdinesh/keystone-static-blog**](https://github.com/flexdinesh/keystone-static-blog/tree/main/blog-cardboard) (`blog-cardboard`) | 9s | [Data](./data/github.com/flexdinesh/keystone-static-blog/bWFpbgo/YmxvZy1jYXJkYm9hcmQK) |
| ✅ | [**github.com/flexdinesh/keystone-static-blog**](https://github.com/flexdinesh/keystone-static-blog/tree/main/blog-newspaper) (`blog-newspaper`) | 9s | [Data](./data/github.com/flexdinesh/keystone-static-blog/bWFpbgo/YmxvZy1uZXdzcGFwZXIK) |
| ✅ | [**github.com/flexdinesh/keystone-static-blog**](https://github.com/flexdinesh/keystone-static-blog/tree/main/blog-sleek) (`blog-sleek`) | 9s | [Data](./data/github.com/flexdinesh/keystone-static-blog/bWFpbgo/YmxvZy1zbGVlawo) |
| ✅ | [**github.com/flojoy-ai/studio**](https://github.com/flojoy-ai/studio/tree/main/) | 9s | [Data](./data/github.com/flojoy-ai/studio/bWFpbgo/Cg) |
| ✅ | [**github.com/flojoy-ai/studio**](https://github.com/flojoy-ai/studio/tree/main/docs) (`docs`) | 30s | [Data](./data/github.com/flojoy-ai/studio/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/flotiq/flotiq-gatsby-portfolio-2**](https://github.com/flotiq/flotiq-gatsby-portfolio-2/tree/master/) | 2m 38s | [Data](./data/github.com/flotiq/flotiq-gatsby-portfolio-2/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/flotiq/flotiq-gatsby-recipe-2**](https://github.com/flotiq/flotiq-gatsby-recipe-2/tree/master/) | 1m 48s | [Data](./data/github.com/flotiq/flotiq-gatsby-recipe-2/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/flotiq/flotiq-gatsby-shop-1**](https://github.com/flotiq/flotiq-gatsby-shop-1/tree/master/) | 2m 12s | [Data](./data/github.com/flotiq/flotiq-gatsby-shop-1/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/flotiq/flotiq-gatsby-shop-2**](https://github.com/flotiq/flotiq-gatsby-shop-2/tree/master/) | 2m 26s | [Data](./data/github.com/flotiq/flotiq-gatsby-shop-2/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/flybywiresim/website**](https://github.com/flybywiresim/website/tree/staging/) | 18s | [Data](./data/github.com/flybywiresim/website/c3RhZ2luZwo/Cg) |
| ✅ | [**github.com/foodieland-project/foodieland-frontend**](https://github.com/foodieland-project/foodieland-frontend/tree/master/) | 9s | [Data](./data/github.com/foodieland-project/foodieland-frontend/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/fork-commit-merge/fork-commit-merge**](https://github.com/fork-commit-merge/fork-commit-merge/tree/main/tasks%2Ftailwind) (`tasks/tailwind`) | 10s | [Data](./data/github.com/fork-commit-merge/fork-commit-merge/bWFpbgo/dGFza3MvdGFpbHdpbmQK) |
| ✅ | [**github.com/fork-commit-merge/fork-commit-merge-web**](https://github.com/fork-commit-merge/fork-commit-merge-web/tree/main/) | 10s | [Data](./data/github.com/fork-commit-merge/fork-commit-merge-web/bWFpbgo/Cg) |
| ❌ | [**github.com/formbricks/formbricks**](https://github.com/formbricks/formbricks/tree/main/apps%2Fformbricks-com) (`apps/formbricks-com`) | *n/a* | [Data](./data/github.com/formbricks/formbricks/bWFpbgo/YXBwcy9mb3JtYnJpY2tzLWNvbQo) |
| ✅ | [**github.com/formbricks/formbricks**](https://github.com/formbricks/formbricks/tree/main/apps%2Fweb) (`apps/web`) | 1m 25s | [Data](./data/github.com/formbricks/formbricks/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/formbricks/formbricks**](https://github.com/formbricks/formbricks/tree/main/packages%2Fsurveys) (`packages/surveys`) | 2m 10s | [Data](./data/github.com/formbricks/formbricks/bWFpbgo/cGFja2FnZXMvc3VydmV5cwo) |
| ✅ | [**github.com/formbricks/formbricks**](https://github.com/formbricks/formbricks/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 2m 1s | [Data](./data/github.com/formbricks/formbricks/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ❌ | [**github.com/formzillion/formzillion.com**](https://github.com/formzillion/formzillion.com/tree/development/packages%2Ftailwind-config) (`packages/tailwind-config`) | *n/a* | [Data](./data/github.com/formzillion/formzillion.com/ZGV2ZWxvcG1lbnQK/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/fossasia/open-event-checkin**](https://github.com/fossasia/open-event-checkin/tree/development/) | 13s | [Data](./data/github.com/fossasia/open-event-checkin/ZGV2ZWxvcG1lbnQK/Cg) |
| ✅ | [**github.com/frain-dev/convoy-website**](https://github.com/frain-dev/convoy-website/tree/main/) | 15s | [Data](./data/github.com/frain-dev/convoy-website/bWFpbgo/Cg) |
| ✅ | [**github.com/franciscobmacedo/remotefreelancept**](https://github.com/franciscobmacedo/remotefreelancept/tree/main/) | 5s | [Data](./data/github.com/franciscobmacedo/remotefreelancept/bWFpbgo/Cg) |
| ✅ | [**github.com/frappe/books**](https://github.com/frappe/books/tree/master/) | 12s | [Data](./data/github.com/frappe/books/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/freeCodeCamp/classroom**](https://github.com/freeCodeCamp/classroom/tree/main/) | *n/a* | [Data](./data/github.com/freeCodeCamp/classroom/bWFpbgo/Cg) |
| ✅ | [**github.com/freedmand/semantra**](https://github.com/freedmand/semantra/tree/main/client) (`client`) | 6s | [Data](./data/github.com/freedmand/semantra/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/freeman-jiang/nexus**](https://github.com/freeman-jiang/nexus/tree/main/extension-old) (`extension-old`) | 7s | [Data](./data/github.com/freeman-jiang/nexus/bWFpbgo/ZXh0ZW5zaW9uLW9sZAo) |
| ❌ | [**github.com/freesewing/freesewing**](https://github.com/freesewing/freesewing/tree/develop/sites%2Fdev) (`sites/dev`) | *n/a* | [Data](./data/github.com/freesewing/freesewing/ZGV2ZWxvcAo/c2l0ZXMvZGV2Cg) |
| ❌ | [**github.com/freesewing/freesewing**](https://github.com/freesewing/freesewing/tree/develop/sites%2Flab) (`sites/lab`) | *n/a* | [Data](./data/github.com/freesewing/freesewing/ZGV2ZWxvcAo/c2l0ZXMvbGFiCg) |
| ❌ | [**github.com/freesewing/freesewing**](https://github.com/freesewing/freesewing/tree/develop/sites%2Forg) (`sites/org`) | *n/a* | [Data](./data/github.com/freesewing/freesewing/ZGV2ZWxvcAo/c2l0ZXMvb3JnCg) |
| ❌ | [**github.com/freesewing/freesewing**](https://github.com/freesewing/freesewing/tree/develop/sites%2Fsde) (`sites/sde`) | *n/a* | [Data](./data/github.com/freesewing/freesewing/ZGV2ZWxvcAo/c2l0ZXMvc2RlCg) |
| ✅ | [**github.com/fremantle-industries/history**](https://github.com/fremantle-industries/history/tree/main/assets) (`assets`) | 7s | [Data](./data/github.com/fremantle-industries/history/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/frontendweb3/nextra-blog**](https://github.com/frontendweb3/nextra-blog/tree/main/) | 7s | [Data](./data/github.com/frontendweb3/nextra-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/fullstackeurope/fullstackeurope.com**](https://github.com/fullstackeurope/fullstackeurope.com/tree/main/resources%2F2022) (`resources/2022`) | 10s | [Data](./data/github.com/fullstackeurope/fullstackeurope.com/bWFpbgo/cmVzb3VyY2VzLzIwMjIK) |
| ✅ | [**github.com/fullstackeurope/fullstackeurope.com**](https://github.com/fullstackeurope/fullstackeurope.com/tree/main/resources%2F2023) (`resources/2023`) | 9s | [Data](./data/github.com/fullstackeurope/fullstackeurope.com/bWFpbgo/cmVzb3VyY2VzLzIwMjMK) |
| ✅ | [**github.com/fuocy/lighthouse-shop**](https://github.com/fuocy/lighthouse-shop/tree/master/) | 8s | [Data](./data/github.com/fuocy/lighthouse-shop/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/gabrysia694/Gym-Junkies**](https://github.com/gabrysia694/Gym-Junkies/tree/main/) | 7s | [Data](./data/github.com/gabrysia694/Gym-Junkies/bWFpbgo/Cg) |
| ✅ | [**github.com/gacallea/elm_vite_tailwind_template**](https://github.com/gacallea/elm_vite_tailwind_template/tree/main/) | 8s | [Data](./data/github.com/gacallea/elm_vite_tailwind_template/bWFpbgo/Cg) |
| ✅ | [**github.com/gaearon/overreacted.io**](https://github.com/gaearon/overreacted.io/tree/main/) | 11s | [Data](./data/github.com/gaearon/overreacted.io/bWFpbgo/Cg) |
| ✅ | [**github.com/gateremark/google_maps_clone**](https://github.com/gateremark/google_maps_clone/tree/main/) | 42s | [Data](./data/github.com/gateremark/google_maps_clone/bWFpbgo/Cg) |
| ✅ | [**github.com/gaucho-labs/leptos-query**](https://github.com/gaucho-labs/leptos-query/tree/main/devtools) (`devtools`) | 11s | [Data](./data/github.com/gaucho-labs/leptos-query/bWFpbgo/ZGV2dG9vbHMK) |
| ✅ | [**github.com/gavinmgrant/omitplastic**](https://github.com/gavinmgrant/omitplastic/tree/main/) | 10s | [Data](./data/github.com/gavinmgrant/omitplastic/bWFpbgo/Cg) |
| ✅ | [**github.com/gavinmn/nelson.co**](https://github.com/gavinmn/nelson.co/tree/main/) | 11s | [Data](./data/github.com/gavinmn/nelson.co/bWFpbgo/Cg) |
| ✅ | [**github.com/gdarko/laravel-vue-starter**](https://github.com/gdarko/laravel-vue-starter/tree/master/) | 6s | [Data](./data/github.com/gdarko/laravel-vue-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/gdgchennai/DevFest22**](https://github.com/gdgchennai/DevFest22/tree/main/) | 12s | [Data](./data/github.com/gdgchennai/DevFest22/bWFpbgo/Cg) |
| ✅ | [**github.com/gdsc-abesit/GDSC-ABESIT**](https://github.com/gdsc-abesit/GDSC-ABESIT/tree/main/) | 7s | [Data](./data/github.com/gdsc-abesit/GDSC-ABESIT/bWFpbgo/Cg) |
| ✅ | [**github.com/gdsc-gvp/CMS**](https://github.com/gdsc-gvp/CMS/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/gdsc-gvp/CMS/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/gdsc-jssstu/campUS-Web**](https://github.com/gdsc-jssstu/campUS-Web/tree/main/) | 6s | [Data](./data/github.com/gdsc-jssstu/campUS-Web/bWFpbgo/Cg) |
| ✅ | [**github.com/geekr-dev/geekchat**](https://github.com/geekr-dev/geekchat/tree/main/) | 6s | [Data](./data/github.com/geekr-dev/geekchat/bWFpbgo/Cg) |
| ✅ | [**github.com/genaroibc/tailwindhub**](https://github.com/genaroibc/tailwindhub/tree/main/) | 8s | [Data](./data/github.com/genaroibc/tailwindhub/bWFpbgo/Cg) |
| ✅ | [**github.com/geovannimp/cube-baby-presets**](https://github.com/geovannimp/cube-baby-presets/tree/main/) | 10s | [Data](./data/github.com/geovannimp/cube-baby-presets/bWFpbgo/Cg) |
| ✅ | [**github.com/gergelyszerovay/angular-http-request-cancellation-rxjs**](https://github.com/gergelyszerovay/angular-http-request-cancellation-rxjs/tree/main/) | 6s | [Data](./data/github.com/gergelyszerovay/angular-http-request-cancellation-rxjs/bWFpbgo/Cg) |
| ✅ | [**github.com/getAlby/ZapPlanner**](https://github.com/getAlby/ZapPlanner/tree/main/) | 10s | [Data](./data/github.com/getAlby/ZapPlanner/bWFpbgo/Cg) |
| ✅ | [**github.com/getintorj/ReactJs-Chatapp_Mangodb**](https://github.com/getintorj/ReactJs-Chatapp_Mangodb/tree/master/) | 9s | [Data](./data/github.com/getintorj/ReactJs-Chatapp_Mangodb/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ghoshnirmalya/the-fullstack-app**](https://github.com/ghoshnirmalya/the-fullstack-app/tree/main/) | 8s | [Data](./data/github.com/ghoshnirmalya/the-fullstack-app/bWFpbgo/Cg) |
| ✅ | [**github.com/gigo6000/instagram-clone**](https://github.com/gigo6000/instagram-clone/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/gigo6000/instagram-clone/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/giridhar7632/jamstackhack-22**](https://github.com/giridhar7632/jamstackhack-22/tree/main/) | 10s | [Data](./data/github.com/giridhar7632/jamstackhack-22/bWFpbgo/Cg) |
| ✅ | [**github.com/girlscript/gssoc-website-new**](https://github.com/girlscript/gssoc-website-new/tree/main/) | 7s | [Data](./data/github.com/girlscript/gssoc-website-new/bWFpbgo/Cg) |
| ✅ | [**github.com/giscus/giscus**](https://github.com/giscus/giscus/tree/main/) | 11s | [Data](./data/github.com/giscus/giscus/bWFpbgo/Cg) |
| ✅ | [**github.com/gitbutlerapp/gitbutler**](https://github.com/gitbutlerapp/gitbutler/tree/master/gitbutler-ui) (`gitbutler-ui`) | 8s | [Data](./data/github.com/gitbutlerapp/gitbutler/bWFzdGVyCg/Z2l0YnV0bGVyLXVpCg) |
| ✅ | [**github.com/gitcoinco/easy-retro-pgf**](https://github.com/gitcoinco/easy-retro-pgf/tree/main/) | 8s | [Data](./data/github.com/gitcoinco/easy-retro-pgf/bWFpbgo/Cg) |
| ✅ | [**github.com/gitcoinco/grants-stack**](https://github.com/gitcoinco/grants-stack/tree/main/packages%2Fgrant-explorer) (`packages/grant-explorer`) | 2m 55s | [Data](./data/github.com/gitcoinco/grants-stack/bWFpbgo/cGFja2FnZXMvZ3JhbnQtZXhwbG9yZXIK) |
| ✅ | [**github.com/gitcoinco/passport**](https://github.com/gitcoinco/passport/tree/main/app) (`app`) | 17s | [Data](./data/github.com/gitcoinco/passport/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next05) (`next05`) | 5s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDA1Cg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next06) (`next06`) | 5s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDA2Cg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next07) (`next07`) | 7s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDA3Cg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next08) (`next08`) | 6s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDA4Cg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next09) (`next09`) | 7s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDA5Cg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next10) (`next10`) | 6s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDEwCg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next11) (`next11`) | 6s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDExCg) |
| ✅ | [**github.com/gitdagray/next-js-course**](https://github.com/gitdagray/next-js-course/tree/main/next12) (`next12`) | 7s | [Data](./data/github.com/gitdagray/next-js-course/bWFpbgo/bmV4dDEyCg) |
| ❌ | [**github.com/gitdagray/tailwind-css-course**](https://github.com/gitdagray/tailwind-css-course/tree/main/lesson02) (`lesson02`) | *n/a* | [Data](./data/github.com/gitdagray/tailwind-css-course/bWFpbgo/bGVzc29uMDIK) |
| ❌ | [**github.com/gitdagray/tailwind-css-course**](https://github.com/gitdagray/tailwind-css-course/tree/main/lesson03) (`lesson03`) | *n/a* | [Data](./data/github.com/gitdagray/tailwind-css-course/bWFpbgo/bGVzc29uMDMK) |
| ❌ | [**github.com/gitdagray/tailwind-css-course**](https://github.com/gitdagray/tailwind-css-course/tree/main/lesson04) (`lesson04`) | *n/a* | [Data](./data/github.com/gitdagray/tailwind-css-course/bWFpbgo/bGVzc29uMDQK) |
| ❌ | [**github.com/gitdagray/tailwind-css-course**](https://github.com/gitdagray/tailwind-css-course/tree/main/lesson05) (`lesson05`) | *n/a* | [Data](./data/github.com/gitdagray/tailwind-css-course/bWFpbgo/bGVzc29uMDUK) |
| ✅ | [**github.com/github-20k/super-star**](https://github.com/github-20k/super-star/tree/main/) | 7s | [Data](./data/github.com/github-20k/super-star/bWFpbgo/Cg) |
| ✅ | [**github.com/gitpod-io/devx-community**](https://github.com/gitpod-io/devx-community/tree/main/) | 6s | [Data](./data/github.com/gitpod-io/devx-community/bWFpbgo/Cg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/) | 3m 8s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/Cg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/docs) (`docs`) | 1m 39s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Falert) (`packages/alert`) | 13s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYWxlcnQK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fapp-bar) (`packages/app-bar`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYXBwLWJhcgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fapp-shell) (`packages/app-shell`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYXBwLXNoZWxsCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fautocomplete) (`packages/autocomplete`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYXV0b2NvbXBsZXRlCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Favatar) (`packages/avatar`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYXZhdGFyCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fbadge) (`packages/badge`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYmFkZ2UK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fbanner) (`packages/banner`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYmFubmVyCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fbottom-navigation) (`packages/bottom-navigation`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYm90dG9tLW5hdmlnYXRpb24K) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fbottom-sheets) (`packages/bottom-sheets`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYm90dG9tLXNoZWV0cwo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fbreadcrumbs) (`packages/breadcrumbs`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYnJlYWRjcnVtYnMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fbutton) (`packages/button`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvYnV0dG9uCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fcard) (`packages/card`) | 13s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvY2FyZAo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fcommand) (`packages/command`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvY29tbWFuZAo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fcontainer) (`packages/container`) | 4m 18s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvY29udGFpbmVyCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fdivider) (`packages/divider`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvZGl2aWRlcgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fdropdown) (`packages/dropdown`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvZHJvcGRvd24K) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Feditor) (`packages/editor`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvZWRpdG9yCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fforms) (`packages/forms`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvZm9ybXMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ficon) (`packages/icon`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvaWNvbgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ficonsax) (`packages/iconsax`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvaWNvbnNheAo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Flayouts) (`packages/layouts`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbGF5b3V0cwo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Flist) (`packages/list`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbGlzdAo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Flogo) (`packages/logo`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbG9nbwo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fmenu) (`packages/menu`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbWVudQo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fmenus) (`packages/menus`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbWVudXMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fmodal) (`packages/modal`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbW9kYWwK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fmulti-select) (`packages/multi-select`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbXVsdGktc2VsZWN0Cg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fnav-drawer) (`packages/nav-drawer`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbmF2LWRyYXdlcgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fnavbar) (`packages/navbar`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvbmF2YmFyCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fpages) (`packages/pages`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcGFnZXMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fpagination) (`packages/pagination`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcGFnaW5hdGlvbgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fpopover) (`packages/popover`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcG9wb3Zlcgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fprogress) (`packages/progress`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcHJvZ3Jlc3MK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fprogress-circlular) (`packages/progress-circlular`) | 4m 9s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcHJvZ3Jlc3MtY2lyY2x1bGFyCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fquill-editor) (`packages/quill-editor`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcXVpbGwtZWRpdG9yCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Frating) (`packages/rating`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvcmF0aW5nCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fselect) (`packages/select`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc2VsZWN0Cg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fservices) (`packages/services`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc2VydmljZXMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fshimmer) (`packages/shimmer`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc2hpbW1lcgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fspinner) (`packages/spinner`) | 10s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc3Bpbm5lcgo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fstats) (`packages/stats`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc3RhdHMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fsteppers) (`packages/steppers`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc3RlcHBlcnMK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fswitch) (`packages/switch`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvc3dpdGNoCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftable) (`packages/table`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdGFibGUK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftabs) (`packages/tabs`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdGFicwo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftext) (`packages/text`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdGV4dAo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftimeline) (`packages/timeline`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdGltZWxpbmUK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftoast) (`packages/toast`) | 13s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdG9hc3QK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftoast-store) (`packages/toast-store`) | 12s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdG9hc3Qtc3RvcmUK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Ftooltip) (`packages/tooltip`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdG9vbHRpcAo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/packages%2Fui) (`packages/ui`) | 11s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fkitchen-sink) (`starter/kitchen-sink`) | 37s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci9raXRjaGVuLXNpbmsK) |
| ❌ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fmorpheme-astro) (`starter/morpheme-astro`) | *n/a* | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci9tb3JwaGVtZS1hc3Rybwo) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fnuxt-admin) (`starter/nuxt-admin`) | 24s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci9udXh0LWFkbWluCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fnuxt-auth) (`starter/nuxt-auth`) | 25s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci9udXh0LWF1dGgK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fnuxt-commerce) (`starter/nuxt-commerce`) | 29s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci9udXh0LWNvbW1lcmNlCg) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fnuxt-minimal) (`starter/nuxt-minimal`) | 22s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci9udXh0LW1pbmltYWwK) |
| ✅ | [**github.com/gitsindonesia/ui-component**](https://github.com/gitsindonesia/ui-component/tree/main/starter%2Fvue) (`starter/vue`) | 20s | [Data](./data/github.com/gitsindonesia/ui-component/bWFpbgo/c3RhcnRlci92dWUK) |
| ✅ | [**github.com/glennreyes/react-graphql-workshop**](https://github.com/glennreyes/react-graphql-workshop/tree/main/app) (`app`) | 21s | [Data](./data/github.com/glennreyes/react-graphql-workshop/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/gmpetrov/databerry**](https://github.com/gmpetrov/databerry/tree/main/apps%2Fdashboard) (`apps/dashboard`) | 2m 43s | [Data](./data/github.com/gmpetrov/databerry/bWFpbgo/YXBwcy9kYXNoYm9hcmQK) |
| ✅ | [**github.com/gndx/ev0-astro-theme**](https://github.com/gndx/ev0-astro-theme/tree/main/) | 24s | [Data](./data/github.com/gndx/ev0-astro-theme/bWFpbgo/Cg) |
| ✅ | [**github.com/gobackup/gobackup**](https://github.com/gobackup/gobackup/tree/main/web) (`web`) | 14s | [Data](./data/github.com/gobackup/gobackup/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/gobuffalo/docs**](https://github.com/gobuffalo/docs/tree/main/) | 8s | [Data](./data/github.com/gobuffalo/docs/bWFpbgo/Cg) |
| ✅ | [**github.com/gokulkrishh/bmrk.cc**](https://github.com/gokulkrishh/bmrk.cc/tree/main/) | 9s | [Data](./data/github.com/gokulkrishh/bmrk.cc/bWFpbgo/Cg) |
| ✅ | [**github.com/gokulkrishh/expense.fyi**](https://github.com/gokulkrishh/expense.fyi/tree/main/) | 1m 40s | [Data](./data/github.com/gokulkrishh/expense.fyi/bWFpbgo/Cg) |
| ✅ | [**github.com/goldeye0351/notion-blog**](https://github.com/goldeye0351/notion-blog/tree/main/) | 10s | [Data](./data/github.com/goldeye0351/notion-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/golemfactory/golem-docs**](https://github.com/golemfactory/golem-docs/tree/master/) | 11s | [Data](./data/github.com/golemfactory/golem-docs/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/gomestzx/pix-qrcode**](https://github.com/gomestzx/pix-qrcode/tree/main/) | 9s | [Data](./data/github.com/gomestzx/pix-qrcode/bWFpbgo/Cg) |
| ✅ | [**github.com/gomestzx/tools4CSS**](https://github.com/gomestzx/tools4CSS/tree/main/) | 5s | [Data](./data/github.com/gomestzx/tools4CSS/bWFpbgo/Cg) |
| ✅ | [**github.com/gomzyakov/secretic**](https://github.com/gomzyakov/secretic/tree/main/) | 9s | [Data](./data/github.com/gomzyakov/secretic/bWFpbgo/Cg) |
| ✅ | [**github.com/goniszewski/grimoire**](https://github.com/goniszewski/grimoire/tree/main/) | 10s | [Data](./data/github.com/goniszewski/grimoire/bWFpbgo/Cg) |
| ✅ | [**github.com/gptlink/gptlink-web**](https://github.com/gptlink/gptlink-web/tree/main/) | 8s | [Data](./data/github.com/gptlink/gptlink-web/bWFpbgo/Cg) |
| ✅ | [**github.com/grantrapp/grantr**](https://github.com/grantrapp/grantr/tree/master/frontend) (`frontend`) | 6s | [Data](./data/github.com/grantrapp/grantr/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/graphql-openfederation/website**](https://github.com/graphql-openfederation/website/tree/main/) | 18s | [Data](./data/github.com/graphql-openfederation/website/bWFpbgo/Cg) |
| ✅ | [**github.com/gravitano/nuxt3-tailwind-kit**](https://github.com/gravitano/nuxt3-tailwind-kit/tree/main/) | 14s | [Data](./data/github.com/gravitano/nuxt3-tailwind-kit/bWFpbgo/Cg) |
| ✅ | [**github.com/gregberge/twc**](https://github.com/gregberge/twc/tree/main/website) (`website`) | 10s | [Data](./data/github.com/gregberge/twc/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/gregonarash/rewind-table**](https://github.com/gregonarash/rewind-table/tree/main/) | 9s | [Data](./data/github.com/gregonarash/rewind-table/bWFpbgo/Cg) |
| ✅ | [**github.com/gridaco/grida**](https://github.com/gridaco/grida/tree/main/site) (`site`) | 18s | [Data](./data/github.com/gridaco/grida/bWFpbgo/c2l0ZQo) |
| ✅ | [**github.com/gridaco/grida**](https://github.com/gridaco/grida/tree/main/www) (`www`) | 24s | [Data](./data/github.com/gridaco/grida/bWFpbgo/d3d3Cg) |
| ✅ | [**github.com/grimsteel/miband4-web**](https://github.com/grimsteel/miband4-web/tree/main/) | 6s | [Data](./data/github.com/grimsteel/miband4-web/bWFpbgo/Cg) |
| ✅ | [**github.com/groundedsage/clj-chatbot-ui**](https://github.com/groundedsage/clj-chatbot-ui/tree/main/) | 33s | [Data](./data/github.com/groundedsage/clj-chatbot-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/guanweisong/honeycomb-wap**](https://github.com/guanweisong/honeycomb-wap/tree/master/) | 19s | [Data](./data/github.com/guanweisong/honeycomb-wap/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/gurucomputing/headscale-ui**](https://github.com/gurucomputing/headscale-ui/tree/master/) | 41s | [Data](./data/github.com/gurucomputing/headscale-ui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/gustavomorinaga/gustavomorinaga.dev**](https://github.com/gustavomorinaga/gustavomorinaga.dev/tree/main/) | 8s | [Data](./data/github.com/gustavomorinaga/gustavomorinaga.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/gxl27/design-patterns**](https://github.com/gxl27/design-patterns/tree/main/) | 14s | [Data](./data/github.com/gxl27/design-patterns/bWFpbgo/Cg) |
| ✅ | [**github.com/h4l/headgear**](https://github.com/h4l/headgear/tree/main/) | 10s | [Data](./data/github.com/h4l/headgear/bWFpbgo/Cg) |
| ✅ | [**github.com/hackbg/web3-starter**](https://github.com/hackbg/web3-starter/tree/main/) | 7s | [Data](./data/github.com/hackbg/web3-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/hackclub/blot**](https://github.com/hackclub/blot/tree/main/astro) (`astro`) | 17s | [Data](./data/github.com/hackclub/blot/bWFpbgo/YXN0cm8K) |
| ✅ | [**github.com/hackutd/jury**](https://github.com/hackutd/jury/tree/master/client) (`client`) | 5s | [Data](./data/github.com/hackutd/jury/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/hagonin/Recipe-Django-NextJs**](https://github.com/hagonin/Recipe-Django-NextJs/tree/master/frontend) (`frontend`) | 15s | [Data](./data/github.com/hagonin/Recipe-Django-NextJs/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/hahahumble/speechgpt**](https://github.com/hahahumble/speechgpt/tree/main/) | 9s | [Data](./data/github.com/hahahumble/speechgpt/bWFpbgo/Cg) |
| ✅ | [**github.com/halo-dev/theme-earth**](https://github.com/halo-dev/theme-earth/tree/main/) | 7s | [Data](./data/github.com/halo-dev/theme-earth/bWFpbgo/Cg) |
| ✅ | [**github.com/halo-sigs/plugin-links**](https://github.com/halo-sigs/plugin-links/tree/main/console) (`console`) | 5s | [Data](./data/github.com/halo-sigs/plugin-links/bWFpbgo/Y29uc29sZQo) |
| ❌ | [**github.com/hannansatopay/devstar**](https://github.com/hannansatopay/devstar/tree/main/) | *n/a* | [Data](./data/github.com/hannansatopay/devstar/bWFpbgo/Cg) |
| ✅ | [**github.com/harithya/Portfolio-V2**](https://github.com/harithya/Portfolio-V2/tree/main/) | 10s | [Data](./data/github.com/harithya/Portfolio-V2/bWFpbgo/Cg) |
| ✅ | [**github.com/harundogdu/twitter-clone**](https://github.com/harundogdu/twitter-clone/tree/main/) | 9s | [Data](./data/github.com/harundogdu/twitter-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/hashgraph/hedera-smart-contracts**](https://github.com/hashgraph/hedera-smart-contracts/tree/main/system-contract-dapp-playground) (`system-contract-dapp-playground`) | 8s | [Data](./data/github.com/hashgraph/hedera-smart-contracts/bWFpbgo/c3lzdGVtLWNvbnRyYWN0LWRhcHAtcGxheWdyb3VuZAo) |
| ✅ | [**github.com/hasinhayder/tailwind-boilerplate**](https://github.com/hasinhayder/tailwind-boilerplate/tree/master/) | 9s | [Data](./data/github.com/hasinhayder/tailwind-boilerplate/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/haydenbleasel/next-forge**](https://github.com/haydenbleasel/next-forge/tree/main/) | 7s | [Data](./data/github.com/haydenbleasel/next-forge/bWFpbgo/Cg) |
| ✅ | [**github.com/haydenbleasel/website**](https://github.com/haydenbleasel/website/tree/main/) | 8s | [Data](./data/github.com/haydenbleasel/website/bWFpbgo/Cg) |
| ✅ | [**github.com/haydenull/logseq-plugin-file-manager**](https://github.com/haydenull/logseq-plugin-file-manager/tree/main/) | 9s | [Data](./data/github.com/haydenull/logseq-plugin-file-manager/bWFpbgo/Cg) |
| ✅ | [**github.com/haydenull/logseq-plugin-react-boilerplate**](https://github.com/haydenull/logseq-plugin-react-boilerplate/tree/main/) | 9s | [Data](./data/github.com/haydenull/logseq-plugin-react-boilerplate/bWFpbgo/Cg) |
| ❌ | [**github.com/heddendorp/section-app-client**](https://github.com/heddendorp/section-app-client/tree/main/) | *n/a* | [Data](./data/github.com/heddendorp/section-app-client/bWFpbgo/Cg) |
| ✅ | [**github.com/heimoshuiyu/chatgpt-api-web**](https://github.com/heimoshuiyu/chatgpt-api-web/tree/master/) | 9s | [Data](./data/github.com/heimoshuiyu/chatgpt-api-web/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/helianthuswhite/chatgpt-web-next**](https://github.com/helianthuswhite/chatgpt-web-next/tree/main/) | 6s | [Data](./data/github.com/helianthuswhite/chatgpt-web-next/bWFpbgo/Cg) |
| ✅ | [**github.com/helium/network-explorer**](https://github.com/helium/network-explorer/tree/main/) | 7s | [Data](./data/github.com/helium/network-explorer/bWFpbgo/Cg) |
| ✅ | [**github.com/helius-labs/xray**](https://github.com/helius-labs/xray/tree/dev/) | 58s | [Data](./data/github.com/helius-labs/xray/ZGV2Cg/Cg) |
| ❌ | [**github.com/heyeshuang/hugo-theme-tokiwa**](https://github.com/heyeshuang/hugo-theme-tokiwa/tree/master/) | *n/a* | [Data](./data/github.com/heyeshuang/hugo-theme-tokiwa/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/heyxyz/hey**](https://github.com/heyxyz/hey/tree/main/apps%2Fweb) (`apps/web`) | 1m 2s | [Data](./data/github.com/heyxyz/hey/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/hi-reeve/vitailse**](https://github.com/hi-reeve/vitailse/tree/main/) | 7s | [Data](./data/github.com/hi-reeve/vitailse/bWFpbgo/Cg) |
| ✅ | [**github.com/hibikikuze4dan/lanraragi-react-web**](https://github.com/hibikikuze4dan/lanraragi-react-web/tree/master/) | 8s | [Data](./data/github.com/hibikikuze4dan/lanraragi-react-web/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/highlight/highlight**](https://github.com/highlight/highlight/tree/main/frontend) (`frontend`) | *n/a* | [Data](./data/github.com/highlight/highlight/bWFpbgo/ZnJvbnRlbmQK) |
| ❌ | [**github.com/highlight/highlight**](https://github.com/highlight/highlight/tree/main/highlight.io) (`highlight.io`) | *n/a* | [Data](./data/github.com/highlight/highlight/bWFpbgo/aGlnaGxpZ2h0LmlvCg) |
| ✅ | [**github.com/hilmanski/freeStuffDev**](https://github.com/hilmanski/freeStuffDev/tree/main/) | 16s | [Data](./data/github.com/hilmanski/freeStuffDev/bWFpbgo/Cg) |
| ✅ | [**github.com/hilverd/glossary-page-template**](https://github.com/hilverd/glossary-page-template/tree/main/) | 7s | [Data](./data/github.com/hilverd/glossary-page-template/bWFpbgo/Cg) |
| ✅ | [**github.com/hippospace/hippo-wallet**](https://github.com/hippospace/hippo-wallet/tree/main/) | 9s | [Data](./data/github.com/hippospace/hippo-wallet/bWFpbgo/Cg) |
| ✅ | [**github.com/histoire-dev/histoire**](https://github.com/histoire-dev/histoire/tree/main/) | 1m 36s | [Data](./data/github.com/histoire-dev/histoire/bWFpbgo/Cg) |
| ✅ | [**github.com/histoire-dev/histoire**](https://github.com/histoire-dev/histoire/tree/main/packages%2Fhistoire-app) (`packages/histoire-app`) | 2m 42s | [Data](./data/github.com/histoire-dev/histoire/bWFpbgo/cGFja2FnZXMvaGlzdG9pcmUtYXBwCg) |
| ✅ | [**github.com/histoire-dev/histoire**](https://github.com/histoire-dev/histoire/tree/main/packages%2Fhistoire-controls) (`packages/histoire-controls`) | 2m 2s | [Data](./data/github.com/histoire-dev/histoire/bWFpbgo/cGFja2FnZXMvaGlzdG9pcmUtY29udHJvbHMK) |
| ✅ | [**github.com/hnccbits/Website**](https://github.com/hnccbits/Website/tree/main/) | 10s | [Data](./data/github.com/hnccbits/Website/bWFpbgo/Cg) |
| ❌ | [**github.com/home-portal/core**](https://github.com/home-portal/core/tree/master/frontend) (`frontend`) | *n/a* | [Data](./data/github.com/home-portal/core/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/hongfaqiu/nextjs13-with-antd-tailwindcss**](https://github.com/hongfaqiu/nextjs13-with-antd-tailwindcss/tree/main/) | 10s | [Data](./data/github.com/hongfaqiu/nextjs13-with-antd-tailwindcss/bWFpbgo/Cg) |
| ❌ | [**github.com/hoppscotch/hoppscotch**](https://github.com/hoppscotch/hoppscotch/tree/main/packages%2Fhoppscotch-selfhost-desktop) (`packages/hoppscotch-selfhost-desktop`) | *n/a* | [Data](./data/github.com/hoppscotch/hoppscotch/bWFpbgo/cGFja2FnZXMvaG9wcHNjb3RjaC1zZWxmaG9zdC1kZXNrdG9wCg) |
| ❌ | [**github.com/hoppscotch/hoppscotch**](https://github.com/hoppscotch/hoppscotch/tree/main/packages%2Fhoppscotch-selfhost-web) (`packages/hoppscotch-selfhost-web`) | *n/a* | [Data](./data/github.com/hoppscotch/hoppscotch/bWFpbgo/cGFja2FnZXMvaG9wcHNjb3RjaC1zZWxmaG9zdC13ZWIK) |
| ❌ | [**github.com/hoppscotch/hoppscotch**](https://github.com/hoppscotch/hoppscotch/tree/main/packages%2Fhoppscotch-sh-admin) (`packages/hoppscotch-sh-admin`) | *n/a* | [Data](./data/github.com/hoppscotch/hoppscotch/bWFpbgo/cGFja2FnZXMvaG9wcHNjb3RjaC1zaC1hZG1pbgo) |
| ✅ | [**github.com/horizon-ui/horizon-tailwind-react**](https://github.com/horizon-ui/horizon-tailwind-react/tree/main/) | 6s | [Data](./data/github.com/horizon-ui/horizon-tailwind-react/bWFpbgo/Cg) |
| ✅ | [**github.com/horizon-ui/horizon-tailwind-react-nextjs**](https://github.com/horizon-ui/horizon-tailwind-react-nextjs/tree/main/) | 15s | [Data](./data/github.com/horizon-ui/horizon-tailwind-react-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/horizon-ui/horizon-tailwind-react-ts**](https://github.com/horizon-ui/horizon-tailwind-react-ts/tree/main/) | 10s | [Data](./data/github.com/horizon-ui/horizon-tailwind-react-ts/bWFpbgo/Cg) |
| ❌ | [**github.com/hotseatio/hotseat.io**](https://github.com/hotseatio/hotseat.io/tree/main/) | *n/a* | [Data](./data/github.com/hotseatio/hotseat.io/bWFpbgo/Cg) |
| ✅ | [**github.com/houdunwang/camera**](https://github.com/houdunwang/camera/tree/master/) | 7s | [Data](./data/github.com/houdunwang/camera/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/howznguyen/howz.dev**](https://github.com/howznguyen/howz.dev/tree/main/) | 9s | [Data](./data/github.com/howznguyen/howz.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/hpolatyuruk/linkwind**](https://github.com/hpolatyuruk/linkwind/tree/master/app) (`app`) | 8s | [Data](./data/github.com/hpolatyuruk/linkwind/bWFzdGVyCg/YXBwCg) |
| ✅ | [**github.com/hridoykhandakar/tailwind_with_ejs_starter_template**](https://github.com/hridoykhandakar/tailwind_with_ejs_starter_template/tree/master/) | 7s | [Data](./data/github.com/hridoykhandakar/tailwind_with_ejs_starter_template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/hrushikedar33/next-fire-auth**](https://github.com/hrushikedar33/next-fire-auth/tree/main/) | 9s | [Data](./data/github.com/hrushikedar33/next-fire-auth/bWFpbgo/Cg) |
| ✅ | [**github.com/httpcats/http.cat**](https://github.com/httpcats/http.cat/tree/master/) | 5s | [Data](./data/github.com/httpcats/http.cat/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/huayemao/cheerTimetable-web**](https://github.com/huayemao/cheerTimetable-web/tree/main/) | 11s | [Data](./data/github.com/huayemao/cheerTimetable-web/bWFpbgo/Cg) |
| ✅ | [**github.com/hudy9x/huditor**](https://github.com/hudy9x/huditor/tree/main/) | 8s | [Data](./data/github.com/hudy9x/huditor/bWFpbgo/Cg) |
| ✅ | [**github.com/huggingface/chat-ui**](https://github.com/huggingface/chat-ui/tree/main/) | 8s | [Data](./data/github.com/huggingface/chat-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/huibizhang/vitawind**](https://github.com/huibizhang/vitawind/tree/master/) | 6s | [Data](./data/github.com/huibizhang/vitawind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/huijiewei/agile-ui**](https://github.com/huijiewei/agile-ui/tree/main/) | 37s | [Data](./data/github.com/huijiewei/agile-ui/bWFpbgo/Cg) |
| ❌ | [**github.com/huijiewei/agile-ui**](https://github.com/huijiewei/agile-ui/tree/main/packages%2Ftwind) (`packages/twind`) | *n/a* | [Data](./data/github.com/huijiewei/agile-ui/bWFpbgo/cGFja2FnZXMvdHdpbmQK) |
| ✅ | [**github.com/huntabyte/huntabyte.com-admin**](https://github.com/huntabyte/huntabyte.com-admin/tree/main/) | 8s | [Data](./data/github.com/huntabyte/huntabyte.com-admin/bWFpbgo/Cg) |
| ✅ | [**github.com/huntabyte/projecthunt**](https://github.com/huntabyte/projecthunt/tree/main/apps%2Fweb) (`apps/web`) | 24s | [Data](./data/github.com/huntabyte/projecthunt/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/huntabyte/showcase**](https://github.com/huntabyte/showcase/tree/main/apps%2Fweb) (`apps/web`) | 8s | [Data](./data/github.com/huntabyte/showcase/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/huphtur/hella-simple-eleventy-tailwind-starter**](https://github.com/huphtur/hella-simple-eleventy-tailwind-starter/tree/main/) | 7s | [Data](./data/github.com/huphtur/hella-simple-eleventy-tailwind-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/huphtur/tailwind-theme-switcher**](https://github.com/huphtur/tailwind-theme-switcher/tree/master/) | 5s | [Data](./data/github.com/huphtur/tailwind-theme-switcher/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/huyson201/MovieFlix**](https://github.com/huyson201/MovieFlix/tree/main/) | 11s | [Data](./data/github.com/huyson201/MovieFlix/bWFpbgo/Cg) |
| ✅ | [**github.com/hydephp/hyde**](https://github.com/hydephp/hyde/tree/master/) | 6s | [Data](./data/github.com/hydephp/hyde/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/hygraph/hygraph-commerce-starter**](https://github.com/hygraph/hygraph-commerce-starter/tree/main/) | 8s | [Data](./data/github.com/hygraph/hygraph-commerce-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/hylarucoder/ChatGPT-Nuxt**](https://github.com/hylarucoder/ChatGPT-Nuxt/tree/main/) | 14s | [Data](./data/github.com/hylarucoder/ChatGPT-Nuxt/bWFpbgo/Cg) |
| ✅ | [**github.com/hyoban/kodoku**](https://github.com/hyoban/kodoku/tree/main/) | 9s | [Data](./data/github.com/hyoban/kodoku/bWFpbgo/Cg) |
| ✅ | [**github.com/hyper63/alternative-stack**](https://github.com/hyper63/alternative-stack/tree/main/) | 6s | [Data](./data/github.com/hyper63/alternative-stack/bWFpbgo/Cg) |
| ❌ | [**github.com/hypothesis/client**](https://github.com/hypothesis/client/tree/main/) | *n/a* | [Data](./data/github.com/hypothesis/client/bWFpbgo/Cg) |
| ✅ | [**github.com/i4o-oss/catalystui**](https://github.com/i4o-oss/catalystui/tree/main/docs) (`docs`) | 21s | [Data](./data/github.com/i4o-oss/catalystui/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/i4o-oss/catalystui**](https://github.com/i4o-oss/catalystui/tree/main/packages%2Fui) (`packages/ui`) | 28s | [Data](./data/github.com/i4o-oss/catalystui/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/ianshk/MantineTW**](https://github.com/ianshk/MantineTW/tree/main/) | 10s | [Data](./data/github.com/ianshk/MantineTW/bWFpbgo/Cg) |
| ✅ | [**github.com/ibelick/animation**](https://github.com/ibelick/animation/tree/main/) | 6s | [Data](./data/github.com/ibelick/animation/bWFpbgo/Cg) |
| ✅ | [**github.com/ibelick/background-snippets**](https://github.com/ibelick/background-snippets/tree/main/) | 6s | [Data](./data/github.com/ibelick/background-snippets/bWFpbgo/Cg) |
| ✅ | [**github.com/ibelick/buttons**](https://github.com/ibelick/buttons/tree/main/) | 5s | [Data](./data/github.com/ibelick/buttons/bWFpbgo/Cg) |
| ✅ | [**github.com/iceboy1406/collosal**](https://github.com/iceboy1406/collosal/tree/main/) | 6s | [Data](./data/github.com/iceboy1406/collosal/bWFpbgo/Cg) |
| ✅ | [**github.com/icerpc/icerpc-docs**](https://github.com/icerpc/icerpc-docs/tree/main/) | 7s | [Data](./data/github.com/icerpc/icerpc-docs/bWFpbgo/Cg) |
| ❌ | [**github.com/identity-box/identity-box**](https://github.com/identity-box/identity-box/tree/master/workspaces%2Fhush-hush) (`workspaces/hush-hush`) | *n/a* | [Data](./data/github.com/identity-box/identity-box/bWFzdGVyCg/d29ya3NwYWNlcy9odXNoLWh1c2gK) |
| ❌ | [**github.com/identity-box/identity-box**](https://github.com/identity-box/identity-box/tree/master/workspaces%2Frendezvous-tester) (`workspaces/rendezvous-tester`) | *n/a* | [Data](./data/github.com/identity-box/identity-box/bWFzdGVyCg/d29ya3NwYWNlcy9yZW5kZXp2b3VzLXRlc3Rlcgo) |
| ✅ | [**github.com/ideoxan/ideoxan**](https://github.com/ideoxan/ideoxan/tree/master/) | 8s | [Data](./data/github.com/ideoxan/ideoxan/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/idorenyinudoh/adura-portfolio**](https://github.com/idorenyinudoh/adura-portfolio/tree/main/) | *n/a* | [Data](./data/github.com/idorenyinudoh/adura-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/idrsdev/react-sidebar-tailwind-darkmode**](https://github.com/idrsdev/react-sidebar-tailwind-darkmode/tree/main/) | 8s | [Data](./data/github.com/idrsdev/react-sidebar-tailwind-darkmode/bWFpbgo/Cg) |
| ✅ | [**github.com/ignite/cli**](https://github.com/ignite/cli/tree/main/docs) (`docs`) | 14s | [Data](./data/github.com/ignite/cli/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/igorm84/spotify-astro-transitions**](https://github.com/igorm84/spotify-astro-transitions/tree/main/) | 19s | [Data](./data/github.com/igorm84/spotify-astro-transitions/bWFpbgo/Cg) |
| ❌ | [**github.com/ike-gg/songuess**](https://github.com/ike-gg/songuess/tree/main/) | *n/a* | [Data](./data/github.com/ike-gg/songuess/bWFpbgo/Cg) |
| ✅ | [**github.com/ikram-shah/iris-fhir-transcribe-summarize-export**](https://github.com/ikram-shah/iris-fhir-transcribe-summarize-export/tree/master/src%2Fvue) (`src/vue`) | 7s | [Data](./data/github.com/ikram-shah/iris-fhir-transcribe-summarize-export/bWFzdGVyCg/c3JjL3Z1ZQo) |
| ✅ | [**github.com/ilkome/finapp**](https://github.com/ilkome/finapp/tree/main/) | 2m 9s | [Data](./data/github.com/ilkome/finapp/bWFpbgo/Cg) |
| ✅ | [**github.com/imfing/hextra**](https://github.com/imfing/hextra/tree/main/) | 7s | [Data](./data/github.com/imfing/hextra/bWFpbgo/Cg) |
| ✅ | [**github.com/imhalid/cv-builder**](https://github.com/imhalid/cv-builder/tree/master/) | 9s | [Data](./data/github.com/imhalid/cv-builder/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/imhalid/halid.dev**](https://github.com/imhalid/halid.dev/tree/main/) | 9s | [Data](./data/github.com/imhalid/halid.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/imiphp/imi-ai**](https://github.com/imiphp/imi-ai/tree/master/admin) (`admin`) | 16s | [Data](./data/github.com/imiphp/imi-ai/bWFzdGVyCg/YWRtaW4K) |
| ✅ | [**github.com/imiphp/imi-ai**](https://github.com/imiphp/imi-ai/tree/master/web) (`web`) | 9s | [Data](./data/github.com/imiphp/imi-ai/bWFzdGVyCg/d2ViCg) |
| ✅ | [**github.com/immich-app/immich**](https://github.com/immich-app/immich/tree/main/docs) (`docs`) | 11s | [Data](./data/github.com/immich-app/immich/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/immich-app/immich**](https://github.com/immich-app/immich/tree/main/web) (`web`) | 9s | [Data](./data/github.com/immich-app/immich/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/importantimport/urara**](https://github.com/importantimport/urara/tree/main/) | 15s | [Data](./data/github.com/importantimport/urara/bWFpbgo/Cg) |
| ✅ | [**github.com/inannan423/Daymd**](https://github.com/inannan423/Daymd/tree/main/) | 8s | [Data](./data/github.com/inannan423/Daymd/bWFpbgo/Cg) |
| ✅ | [**github.com/inaturalist/iNaturalistReactNative**](https://github.com/inaturalist/iNaturalistReactNative/tree/main/) | 8s | [Data](./data/github.com/inaturalist/iNaturalistReactNative/bWFpbgo/Cg) |
| ✅ | [**github.com/index-labs/readpilot**](https://github.com/index-labs/readpilot/tree/main/) | 15s | [Data](./data/github.com/index-labs/readpilot/bWFpbgo/Cg) |
| ✅ | [**github.com/indielayer/ui**](https://github.com/indielayer/ui/tree/main/packages%2Fdemo-nuxt) (`packages/demo-nuxt`) | 28s | [Data](./data/github.com/indielayer/ui/bWFpbgo/cGFja2FnZXMvZGVtby1udXh0Cg) |
| ✅ | [**github.com/indielayer/ui**](https://github.com/indielayer/ui/tree/main/packages%2Fdemo-vue) (`packages/demo-vue`) | 46s | [Data](./data/github.com/indielayer/ui/bWFpbgo/cGFja2FnZXMvZGVtby12dWUK) |
| ✅ | [**github.com/indielayer/ui**](https://github.com/indielayer/ui/tree/main/packages%2Fui) (`packages/ui`) | 36s | [Data](./data/github.com/indielayer/ui/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/inertiajs/inertia**](https://github.com/inertiajs/inertia/tree/master/playgrounds%2Freact) (`playgrounds/react`) | 8s | [Data](./data/github.com/inertiajs/inertia/bWFzdGVyCg/cGxheWdyb3VuZHMvcmVhY3QK) |
| ✅ | [**github.com/inertiajs/inertia**](https://github.com/inertiajs/inertia/tree/master/playgrounds%2Fsvelte) (`playgrounds/svelte`) | 8s | [Data](./data/github.com/inertiajs/inertia/bWFzdGVyCg/cGxheWdyb3VuZHMvc3ZlbHRlCg) |
| ✅ | [**github.com/inertiajs/inertia**](https://github.com/inertiajs/inertia/tree/master/playgrounds%2Fvue2) (`playgrounds/vue2`) | 10s | [Data](./data/github.com/inertiajs/inertia/bWFzdGVyCg/cGxheWdyb3VuZHMvdnVlMgo) |
| ✅ | [**github.com/inertiajs/inertia**](https://github.com/inertiajs/inertia/tree/master/playgrounds%2Fvue3) (`playgrounds/vue3`) | 10s | [Data](./data/github.com/inertiajs/inertia/bWFzdGVyCg/cGxheWdyb3VuZHMvdnVlMwo) |
| ✅ | [**github.com/inifarhan/skaters**](https://github.com/inifarhan/skaters/tree/main/) | 9s | [Data](./data/github.com/inifarhan/skaters/bWFpbgo/Cg) |
| ✅ | [**github.com/initred/nuxt3-tailwindcss3-starter-kit**](https://github.com/initred/nuxt3-tailwindcss3-starter-kit/tree/main/) | 7s | [Data](./data/github.com/initred/nuxt3-tailwindcss3-starter-kit/bWFpbgo/Cg) |
| ❌ | [**github.com/inje-megabrain/megabrain-apps**](https://github.com/inje-megabrain/megabrain-apps/tree/main/apps%2Fdashboard) (`apps/dashboard`) | *n/a* | [Data](./data/github.com/inje-megabrain/megabrain-apps/bWFpbgo/YXBwcy9kYXNoYm9hcmQK) |
| ❌ | [**github.com/insidewebdev/twitter-clone**](https://github.com/insidewebdev/twitter-clone/tree/master/) | *n/a* | [Data](./data/github.com/insidewebdev/twitter-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/instantcommerce/instant-sdk**](https://github.com/instantcommerce/instant-sdk/tree/main/packages%2Fpreview) (`packages/preview`) | 7s | [Data](./data/github.com/instantcommerce/instant-sdk/bWFpbgo/cGFja2FnZXMvcHJldmlldwo) |
| ✅ | [**github.com/instantcommerce/instant-sdk**](https://github.com/instantcommerce/instant-sdk/tree/main/templates%2Fts-tailwind) (`templates/ts-tailwind`) | 9s | [Data](./data/github.com/instantcommerce/instant-sdk/bWFpbgo/dGVtcGxhdGVzL3RzLXRhaWx3aW5kCg) |
| ✅ | [**github.com/intelligentnode/IntelliChat**](https://github.com/intelligentnode/IntelliChat/tree/main/intellichat) (`intellichat`) | 7s | [Data](./data/github.com/intelligentnode/IntelliChat/bWFpbgo/aW50ZWxsaWNoYXQK) |
| ✅ | [**github.com/internxt/website**](https://github.com/internxt/website/tree/main/) | 2m 18s | [Data](./data/github.com/internxt/website/bWFpbgo/Cg) |
| ✅ | [**github.com/invertase/docs.page**](https://github.com/invertase/docs.page/tree/main/website) (`website`) | 26s | [Data](./data/github.com/invertase/docs.page/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/invisal/libsql-studio**](https://github.com/invisal/libsql-studio/tree/develop/) | 8s | [Data](./data/github.com/invisal/libsql-studio/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/invoiceninja/invoiceninja**](https://github.com/invoiceninja/invoiceninja/tree/v5-stable/) | 31s | [Data](./data/github.com/invoiceninja/invoiceninja/djUtc3RhYmxlCg/Cg) |
| ✅ | [**github.com/invoiceninja/invoiceninja.github.io**](https://github.com/invoiceninja/invoiceninja.github.io/tree/v5-rework/) | 12s | [Data](./data/github.com/invoiceninja/invoiceninja.github.io/djUtcmV3b3JrCg/Cg) |
| ✅ | [**github.com/ionandrei44/interior-design**](https://github.com/ionandrei44/interior-design/tree/main/) | 9s | [Data](./data/github.com/ionandrei44/interior-design/bWFpbgo/Cg) |
| ✅ | [**github.com/iq-eq-us/dot-io**](https://github.com/iq-eq-us/dot-io/tree/latest_branch/) | 8s | [Data](./data/github.com/iq-eq-us/dot-io/bGF0ZXN0X2JyYW5jaAo/Cg) |
| ✅ | [**github.com/iqbaladinur/color-extractor**](https://github.com/iqbaladinur/color-extractor/tree/master/) | 8s | [Data](./data/github.com/iqbaladinur/color-extractor/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/iqballa24/Noto-app**](https://github.com/iqballa24/Noto-app/tree/master/) | 7s | [Data](./data/github.com/iqballa24/Noto-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/irvingvjuarez/stories-slider**](https://github.com/irvingvjuarez/stories-slider/tree/stories-ui/) | 10s | [Data](./data/github.com/irvingvjuarez/stories-slider/c3Rvcmllcy11aQo/Cg) |
| ✅ | [**github.com/ishaanbedi/webnotes**](https://github.com/ishaanbedi/webnotes/tree/main/) | 8s | [Data](./data/github.com/ishaanbedi/webnotes/bWFpbgo/Cg) |
| ✅ | [**github.com/iskurbanov/shopify-next.js-tailwind**](https://github.com/iskurbanov/shopify-next.js-tailwind/tree/main/) | 10s | [Data](./data/github.com/iskurbanov/shopify-next.js-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/itbruno/linksforall**](https://github.com/itbruno/linksforall/tree/master/) | 7s | [Data](./data/github.com/itbruno/linksforall/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/itkho/moubah**](https://github.com/itkho/moubah/tree/main/) | 10s | [Data](./data/github.com/itkho/moubah/bWFpbgo/Cg) |
| ✅ | [**github.com/itsDaiton/business-website-template**](https://github.com/itsDaiton/business-website-template/tree/main/) | 9s | [Data](./data/github.com/itsDaiton/business-website-template/bWFpbgo/Cg) |
| ✅ | [**github.com/itswadesh/svelte-commerce**](https://github.com/itswadesh/svelte-commerce/tree/master/) | 14s | [Data](./data/github.com/itswadesh/svelte-commerce/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/itush/snap-remote**](https://github.com/itush/snap-remote/tree/master/) | 7s | [Data](./data/github.com/itush/snap-remote/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ixartz/Astro-boilerplate**](https://github.com/ixartz/Astro-boilerplate/tree/main/) | 24s | [Data](./data/github.com/ixartz/Astro-boilerplate/bWFpbgo/Cg) |
| ✅ | [**github.com/ixartz/Next-JS-Landing-Page-Starter-Template**](https://github.com/ixartz/Next-JS-Landing-Page-Starter-Template/tree/master/) | 5s | [Data](./data/github.com/ixartz/Next-JS-Landing-Page-Starter-Template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ixartz/Next-js-Boilerplate**](https://github.com/ixartz/Next-js-Boilerplate/tree/main/) | 7s | [Data](./data/github.com/ixartz/Next-js-Boilerplate/bWFpbgo/Cg) |
| ✅ | [**github.com/ixkaito/bathe**](https://github.com/ixkaito/bathe/tree/main/) | 6s | [Data](./data/github.com/ixkaito/bathe/bWFpbgo/Cg) |
| ✅ | [**github.com/j3-productions/pantheon**](https://github.com/j3-productions/pantheon/tree/master/ui) (`ui`) | 12s | [Data](./data/github.com/j3-productions/pantheon/bWFzdGVyCg/dWkK) |
| ✅ | [**github.com/jacekschae/shadow-cljs-tailwindcss**](https://github.com/jacekschae/shadow-cljs-tailwindcss/tree/main/) | 7s | [Data](./data/github.com/jacekschae/shadow-cljs-tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/jackblatch/OneStopShop**](https://github.com/jackblatch/OneStopShop/tree/main/) | 9s | [Data](./data/github.com/jackblatch/OneStopShop/bWFpbgo/Cg) |
| ✅ | [**github.com/jackyef/id-wfa**](https://github.com/jackyef/id-wfa/tree/main/) | 12s | [Data](./data/github.com/jackyef/id-wfa/bWFpbgo/Cg) |
| ✅ | [**github.com/jadepeng/pytrader**](https://github.com/jadepeng/pytrader/tree/main/frontend) (`frontend`) | 10s | [Data](./data/github.com/jadepeng/pytrader/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/jagadyudha/jagad.dev**](https://github.com/jagadyudha/jagad.dev/tree/master/) | 12s | [Data](./data/github.com/jagadyudha/jagad.dev/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jagnani73/hospitatva**](https://github.com/jagnani73/hospitatva/tree/main/packages%2Fhospitatva-frontend) (`packages/hospitatva-frontend`) | 8s | [Data](./data/github.com/jagnani73/hospitatva/bWFpbgo/cGFja2FnZXMvaG9zcGl0YXR2YS1mcm9udGVuZAo) |
| ❌ | [**github.com/jahirfiquitiva/jahir.dev**](https://github.com/jahirfiquitiva/jahir.dev/tree/main/) | *n/a* | [Data](./data/github.com/jahirfiquitiva/jahir.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/jakeherp/portfolio**](https://github.com/jakeherp/portfolio/tree/main/) | 7s | [Data](./data/github.com/jakeherp/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/jakob-kruse/setup.ts**](https://github.com/jakob-kruse/setup.ts/tree/main/apps%2Fdocs) (`apps/docs`) | 15s | [Data](./data/github.com/jakob-kruse/setup.ts/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/jakobo/codedrift**](https://github.com/jakobo/codedrift/tree/main/) | 8s | [Data](./data/github.com/jakobo/codedrift/bWFpbgo/Cg) |
| ✅ | [**github.com/jamstack-cms/jamstack-ecommerce**](https://github.com/jamstack-cms/jamstack-ecommerce/tree/next/) | 9s | [Data](./data/github.com/jamstack-cms/jamstack-ecommerce/bmV4dAo/Cg) |
| ✅ | [**github.com/jan-dh/figma-tailwindcss**](https://github.com/jan-dh/figma-tailwindcss/tree/master/) | 7s | [Data](./data/github.com/jan-dh/figma-tailwindcss/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/janhq/jan**](https://github.com/janhq/jan/tree/dev/docs) (`docs`) | 13s | [Data](./data/github.com/janhq/jan/ZGV2Cg/ZG9jcwo) |
| ✅ | [**github.com/janhq/jan**](https://github.com/janhq/jan/tree/dev/uikit) (`uikit`) | 13s | [Data](./data/github.com/janhq/jan/ZGV2Cg/dWlraXQK) |
| ✅ | [**github.com/janhq/jan**](https://github.com/janhq/jan/tree/dev/web) (`web`) | 12s | [Data](./data/github.com/janhq/jan/ZGV2Cg/d2ViCg) |
| ❌ | [**github.com/janleigh/janleigh.github.io**](https://github.com/janleigh/janleigh.github.io/tree/master/) | *n/a* | [Data](./data/github.com/janleigh/janleigh.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/janraasch/hugo-product-launch**](https://github.com/janraasch/hugo-product-launch/tree/master/) | 8s | [Data](./data/github.com/janraasch/hugo-product-launch/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jasonbahl/headless-wp-template-hierarchy**](https://github.com/jasonbahl/headless-wp-template-hierarchy/tree/master/next-apollo) (`next-apollo`) | 12s | [Data](./data/github.com/jasonbahl/headless-wp-template-hierarchy/bWFzdGVyCg/bmV4dC1hcG9sbG8K) |
| ✅ | [**github.com/jasonbahl/headless-wp-template-hierarchy**](https://github.com/jasonbahl/headless-wp-template-hierarchy/tree/master/remix-run) (`remix-run`) | 12s | [Data](./data/github.com/jasonbahl/headless-wp-template-hierarchy/bWFzdGVyCg/cmVtaXgtcnVuCg) |
| ✅ | [**github.com/jasonlong/jasonlong.me**](https://github.com/jasonlong/jasonlong.me/tree/main/) | 22s | [Data](./data/github.com/jasonlong/jasonlong.me/bWFpbgo/Cg) |
| ❌ | [**github.com/javahuang/SurveyKing**](https://github.com/javahuang/SurveyKing/tree/master/website) (`website`) | *n/a* | [Data](./data/github.com/javahuang/SurveyKing/bWFzdGVyCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/javaistic/javaistic**](https://github.com/javaistic/javaistic/tree/main/) | 11s | [Data](./data/github.com/javaistic/javaistic/bWFpbgo/Cg) |
| ✅ | [**github.com/javiersuweijie/zkemail-safe**](https://github.com/javiersuweijie/zkemail-safe/tree/main/zkemail-safe) (`zkemail-safe`) | 8s | [Data](./data/github.com/javiersuweijie/zkemail-safe/bWFpbgo/emtlbWFpbC1zYWZlCg) |
| ✅ | [**github.com/javisperez/tailwindcolorshades**](https://github.com/javisperez/tailwindcolorshades/tree/master/) | 12s | [Data](./data/github.com/javisperez/tailwindcolorshades/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jayk-gupta/web-resources-project**](https://github.com/jayk-gupta/web-resources-project/tree/main/) | 8s | [Data](./data/github.com/jayk-gupta/web-resources-project/bWFpbgo/Cg) |
| ✅ | [**github.com/jazzyclimber/hs-desktop-app**](https://github.com/jazzyclimber/hs-desktop-app/tree/master/) | 9s | [Data](./data/github.com/jazzyclimber/hs-desktop-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jazzypants1989/astro-docs-template**](https://github.com/jazzypants1989/astro-docs-template/tree/main/) | 18s | [Data](./data/github.com/jazzypants1989/astro-docs-template/bWFpbgo/Cg) |
| ✅ | [**github.com/jbolda/finatr**](https://github.com/jbolda/finatr/tree/next/) | 6s | [Data](./data/github.com/jbolda/finatr/bmV4dAo/Cg) |
| ✅ | [**github.com/jbrodriguez/unbalance**](https://github.com/jbrodriguez/unbalance/tree/main/ui) (`ui`) | 7s | [Data](./data/github.com/jbrodriguez/unbalance/bWFpbgo/dWkK) |
| ✅ | [**github.com/jbrooksuk/artisan.page**](https://github.com/jbrooksuk/artisan.page/tree/master/) | 32s | [Data](./data/github.com/jbrooksuk/artisan.page/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jbuckmccready/cavalier_contours_web_demo**](https://github.com/jbuckmccready/cavalier_contours_web_demo/tree/master/frontend) (`frontend`) | 5s | [Data](./data/github.com/jbuckmccready/cavalier_contours_web_demo/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/jeffjadulco/jeffjadulco.com**](https://github.com/jeffjadulco/jeffjadulco.com/tree/master/) | 7s | [Data](./data/github.com/jeffjadulco/jeffjadulco.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jeffreyvr/tailpress**](https://github.com/jeffreyvr/tailpress/tree/master/) | 9s | [Data](./data/github.com/jeffreyvr/tailpress/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jerriclynsjohn/svelte-storybook-tailwind**](https://github.com/jerriclynsjohn/svelte-storybook-tailwind/tree/main/) | 6s | [Data](./data/github.com/jerriclynsjohn/svelte-storybook-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/jfrazier-eth/of**](https://github.com/jfrazier-eth/of/tree/main/) | 7s | [Data](./data/github.com/jfrazier-eth/of/bWFpbgo/Cg) |
| ✅ | [**github.com/jherr/clerk-5-roles-and-perms**](https://github.com/jherr/clerk-5-roles-and-perms/tree/main/clerk-5-roles-and-perms) (`clerk-5-roles-and-perms`) | 6s | [Data](./data/github.com/jherr/clerk-5-roles-and-perms/bWFpbgo/Y2xlcmstNS1yb2xlcy1hbmQtcGVybXMK) |
| ✅ | [**github.com/jherr/clerk-5-roles-and-perms**](https://github.com/jherr/clerk-5-roles-and-perms/tree/main/starter) (`starter`) | 6s | [Data](./data/github.com/jherr/clerk-5-roles-and-perms/bWFpbgo/c3RhcnRlcgo) |
| ✅ | [**github.com/jherr/nextjs13-state-zustand**](https://github.com/jherr/nextjs13-state-zustand/tree/main/finished) (`finished`) | 7s | [Data](./data/github.com/jherr/nextjs13-state-zustand/bWFpbgo/ZmluaXNoZWQK) |
| ✅ | [**github.com/jherr/nextjs13-state-zustand**](https://github.com/jherr/nextjs13-state-zustand/tree/main/starter) (`starter`) | 7s | [Data](./data/github.com/jherr/nextjs13-state-zustand/bWFpbgo/c3RhcnRlcgo) |
| ✅ | [**github.com/jianyq/Anti-gpt-detector**](https://github.com/jianyq/Anti-gpt-detector/tree/main/) | 5s | [Data](./data/github.com/jianyq/Anti-gpt-detector/bWFpbgo/Cg) |
| ✅ | [**github.com/jigar-sable/next-portfolio**](https://github.com/jigar-sable/next-portfolio/tree/main/) | 6s | [Data](./data/github.com/jigar-sable/next-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/jimbeck/nextjs-firebase-username-password**](https://github.com/jimbeck/nextjs-firebase-username-password/tree/main/) | 8s | [Data](./data/github.com/jimbeck/nextjs-firebase-username-password/bWFpbgo/Cg) |
| ✅ | [**github.com/jktrn/abystar**](https://github.com/jktrn/abystar/tree/main/) | 9s | [Data](./data/github.com/jktrn/abystar/bWFpbgo/Cg) |
| ✅ | [**github.com/jktrn/enscribe.dev**](https://github.com/jktrn/enscribe.dev/tree/main/) | 29s | [Data](./data/github.com/jktrn/enscribe.dev/bWFpbgo/Cg) |
| ❌ | [**github.com/jln13x/tailwindcss-highlights**](https://github.com/jln13x/tailwindcss-highlights/tree/main/) | *n/a* | [Data](./data/github.com/jln13x/tailwindcss-highlights/bWFpbgo/Cg) |
| ✅ | [**github.com/jln13x/tailwindcss-highlights**](https://github.com/jln13x/tailwindcss-highlights/tree/main/showcase) (`showcase`) | 8s | [Data](./data/github.com/jln13x/tailwindcss-highlights/bWFpbgo/c2hvd2Nhc2UK) |
| ✅ | [**github.com/jm2097/angular-boilerplate**](https://github.com/jm2097/angular-boilerplate/tree/main/) | 7s | [Data](./data/github.com/jm2097/angular-boilerplate/bWFpbgo/Cg) |
| ❌ | [**github.com/jmagrippis/svelte-kritic**](https://github.com/jmagrippis/svelte-kritic/tree/main/) | *n/a* | [Data](./data/github.com/jmagrippis/svelte-kritic/bWFpbgo/Cg) |
| ✅ | [**github.com/jmau111/jekyll-tailwindcss**](https://github.com/jmau111/jekyll-tailwindcss/tree/main/) | 9s | [Data](./data/github.com/jmau111/jekyll-tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/jocelyn-stericker/oxygen**](https://github.com/jocelyn-stericker/oxygen/tree/main/ui) (`ui`) | 8s | [Data](./data/github.com/jocelyn-stericker/oxygen/bWFpbgo/dWkK) |
| ✅ | [**github.com/joel-kalema/luxury-cars**](https://github.com/joel-kalema/luxury-cars/tree/master/) | 7s | [Data](./data/github.com/joel-kalema/luxury-cars/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/joelhooks/joelhooks-com**](https://github.com/joelhooks/joelhooks-com/tree/main/) | *n/a* | [Data](./data/github.com/joelhooks/joelhooks-com/bWFpbgo/Cg) |
| ✅ | [**github.com/johan-akerman/Greet**](https://github.com/johan-akerman/Greet/tree/main/) | 12s | [Data](./data/github.com/johan-akerman/Greet/bWFpbgo/Cg) |
| ✅ | [**github.com/johan-akerman/SpotifyTranscripts**](https://github.com/johan-akerman/SpotifyTranscripts/tree/master/frontend) (`frontend`) | 12s | [Data](./data/github.com/johan-akerman/SpotifyTranscripts/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/johan-perso/agendapp**](https://github.com/johan-perso/agendapp/tree/main/) | 8s | [Data](./data/github.com/johan-perso/agendapp/bWFpbgo/Cg) |
| ✅ | [**github.com/johnpolacek/date-range-picker-for-shadcn**](https://github.com/johnpolacek/date-range-picker-for-shadcn/tree/main/) | 6s | [Data](./data/github.com/johnpolacek/date-range-picker-for-shadcn/bWFpbgo/Cg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2F__vital__) (`packages/__vital__`) | 21s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvX192aXRhbF9fCg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2F__vital_next__) (`packages/__vital_next__`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvX192aXRhbF9uZXh0X18K) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fbodiless-accordion) (`packages/bodiless-accordion`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvYm9kaWxlc3MtYWNjb3JkaW9uCg) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fbodiless-card) (`packages/bodiless-card`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvYm9kaWxlc3MtY2FyZAo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fbodiless-layouts) (`packages/bodiless-layouts`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvYm9kaWxlc3MtbGF5b3V0cwo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fbodiless-layouts-ui) (`packages/bodiless-layouts-ui`) | 14s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvYm9kaWxlc3MtbGF5b3V0cy11aQo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fbodiless-navigation) (`packages/bodiless-navigation`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvYm9kaWxlc3MtbmF2aWdhdGlvbgo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fbodiless-organisms) (`packages/bodiless-organisms`) | 14s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvYm9kaWxlc3Mtb3JnYW5pc21zCg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-accordion) (`packages/vital-accordion`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtYWNjb3JkaW9uCg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-button) (`packages/vital-button`) | 14s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtYnV0dG9uCg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-card) (`packages/vital-card`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtY2FyZAo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-carousel) (`packages/vital-carousel`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtY2Fyb3VzZWwK) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-content-listing) (`packages/vital-content-listing`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtY29udGVudC1saXN0aW5nCg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-demo) (`packages/vital-demo`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtZGVtbwo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-editors) (`packages/vital-editors`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtZWRpdG9ycwo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-elements) (`packages/vital-elements`) | 24s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtZWxlbWVudHMK) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-flowcontainer) (`packages/vital-flowcontainer`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtZmxvd2NvbnRhaW5lcgo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-layout) (`packages/vital-layout`) | 11s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtbGF5b3V0Cg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-link) (`packages/vital-link`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtbGluawo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-list) (`packages/vital-list`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtbGlzdAo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-navigation) (`packages/vital-navigation`) | 11s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtbmF2aWdhdGlvbgo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-product) (`packages/vital-product`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtcHJvZHVjdAo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-search) (`packages/vital-search`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtc2VhcmNoCg) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-section) (`packages/vital-section`) | 13s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtc2VjdGlvbgo) |
| ✅ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-table) (`packages/vital-table`) | 12s | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtdGFibGUK) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/packages%2Fvital-templates) (`packages/vital-templates`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/cGFja2FnZXMvdml0YWwtdGVtcGxhdGVzCg) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2F__minimal__) (`sites/__minimal__`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvX19taW5pbWFsX18K) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2F__minimal_next__) (`sites/__minimal_next__`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvX19taW5pbWFsX25leHRfXwo) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2F__vital__) (`sites/__vital__`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvX192aXRhbF9fCg) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2F__vital_next__) (`sites/__vital_next__`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvX192aXRhbF9uZXh0X18K) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2Fminimal-demo) (`sites/minimal-demo`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvbWluaW1hbC1kZW1vCg) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2Fvital-demo) (`sites/vital-demo`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvdml0YWwtZGVtbwo) |
| ❌ | [**github.com/johnsonandjohnson/Bodiless-JS**](https://github.com/johnsonandjohnson/Bodiless-JS/tree/main/sites%2Fvital-demo-next) (`sites/vital-demo-next`) | *n/a* | [Data](./data/github.com/johnsonandjohnson/Bodiless-JS/bWFpbgo/c2l0ZXMvdml0YWwtZGVtby1uZXh0Cg) |
| ✅ | [**github.com/jokull/blog**](https://github.com/jokull/blog/tree/master/) | 21s | [Data](./data/github.com/jokull/blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/jordanopensource/er-web**](https://github.com/jordanopensource/er-web/tree/main/) | 22s | [Data](./data/github.com/jordanopensource/er-web/bWFpbgo/Cg) |
| ✅ | [**github.com/jordienr/jordienric.com**](https://github.com/jordienr/jordienric.com/tree/main/) | 12s | [Data](./data/github.com/jordienr/jordienric.com/bWFpbgo/Cg) |
| ✅ | [**github.com/jordihales/hypercolor**](https://github.com/jordihales/hypercolor/tree/main/) | 31s | [Data](./data/github.com/jordihales/hypercolor/bWFpbgo/Cg) |
| ✅ | [**github.com/joshniemela/KU-courses**](https://github.com/joshniemela/KU-courses/tree/main/frontend) (`frontend`) | 8s | [Data](./data/github.com/joshniemela/KU-courses/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/joshxfi/track-as-one**](https://github.com/joshxfi/track-as-one/tree/main/) | 10s | [Data](./data/github.com/joshxfi/track-as-one/bWFpbgo/Cg) |
| ✅ | [**github.com/joshzcold/Cold-Family-Feud**](https://github.com/joshzcold/Cold-Family-Feud/tree/master/) | 11s | [Data](./data/github.com/joshzcold/Cold-Family-Feud/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/josuapsianturi/velflix**](https://github.com/josuapsianturi/velflix/tree/main/) | 8s | [Data](./data/github.com/josuapsianturi/velflix/bWFpbgo/Cg) |
| ✅ | [**github.com/jpanther/congo**](https://github.com/jpanther/congo/tree/dev/) | 10s | [Data](./data/github.com/jpanther/congo/ZGV2Cg/Cg) |
| ✅ | [**github.com/jpanther/lynx**](https://github.com/jpanther/lynx/tree/dev/) | 6s | [Data](./data/github.com/jpanther/lynx/ZGV2Cg/Cg) |
| ✅ | [**github.com/jpvalery/portfolio**](https://github.com/jpvalery/portfolio/tree/main/) | 9s | [Data](./data/github.com/jpvalery/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/js-template/metablog-free**](https://github.com/js-template/metablog-free/tree/dev/apps%2Fhtml) (`apps/html`) | 43s | [Data](./data/github.com/js-template/metablog-free/ZGV2Cg/YXBwcy9odG1sCg) |
| ✅ | [**github.com/js-template/metablog-free**](https://github.com/js-template/metablog-free/tree/dev/apps%2Fsite) (`apps/site`) | 17s | [Data](./data/github.com/js-template/metablog-free/ZGV2Cg/YXBwcy9zaXRlCg) |
| ✅ | [**github.com/jsvigneshkanna/tailwind_ui_components**](https://github.com/jsvigneshkanna/tailwind_ui_components/tree/master/) | 6s | [Data](./data/github.com/jsvigneshkanna/tailwind_ui_components/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/juancmandev/neubrutalism-ui-app**](https://github.com/juancmandev/neubrutalism-ui-app/tree/main/) | 6s | [Data](./data/github.com/juancmandev/neubrutalism-ui-app/bWFpbgo/Cg) |
| ✅ | [**github.com/juanespinola05/notionify**](https://github.com/juanespinola05/notionify/tree/main/) | 7s | [Data](./data/github.com/juanespinola05/notionify/bWFpbgo/Cg) |
| ✅ | [**github.com/juliencrn/usehooks-ts**](https://github.com/juliencrn/usehooks-ts/tree/master/apps%2Fwww) (`apps/www`) | 36s | [Data](./data/github.com/juliencrn/usehooks-ts/bWFzdGVyCg/YXBwcy93d3cK) |
| ✅ | [**github.com/juliooa/secondbrain**](https://github.com/juliooa/secondbrain/tree/main/) | 12s | [Data](./data/github.com/juliooa/secondbrain/bWFpbgo/Cg) |
| ✅ | [**github.com/juliusmarminge/kysely-prisma-appdir**](https://github.com/juliusmarminge/kysely-prisma-appdir/tree/main/) | 7s | [Data](./data/github.com/juliusmarminge/kysely-prisma-appdir/bWFpbgo/Cg) |
| ❌ | [**github.com/juliusmarminge/t3-twin-turbo**](https://github.com/juliusmarminge/t3-twin-turbo/tree/main/apps%2Fexpo) (`apps/expo`) | *n/a* | [Data](./data/github.com/juliusmarminge/t3-twin-turbo/bWFpbgo/YXBwcy9leHBvCg) |
| ❌ | [**github.com/juliusmarminge/t3-twin-turbo**](https://github.com/juliusmarminge/t3-twin-turbo/tree/main/apps%2Fnextjs) (`apps/nextjs`) | *n/a* | [Data](./data/github.com/juliusmarminge/t3-twin-turbo/bWFpbgo/YXBwcy9uZXh0anMK) |
| ❌ | [**github.com/juliusmarminge/t3-twin-turbo**](https://github.com/juliusmarminge/t3-twin-turbo/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/juliusmarminge/t3-twin-turbo/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/junikimm717/puremoot**](https://github.com/junikimm717/puremoot/tree/master/) | 27s | [Data](./data/github.com/junikimm717/puremoot/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/justalever/tailwindcss-mega-menu**](https://github.com/justalever/tailwindcss-mega-menu/tree/main/) | 9s | [Data](./data/github.com/justalever/tailwindcss-mega-menu/bWFpbgo/Cg) |
| ✅ | [**github.com/justboil/admin-one-react-tailwind**](https://github.com/justboil/admin-one-react-tailwind/tree/master/) | 6s | [Data](./data/github.com/justboil/admin-one-react-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/justboil/admin-one-tailwind**](https://github.com/justboil/admin-one-tailwind/tree/master/) | 6s | [Data](./data/github.com/justboil/admin-one-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/justboil/admin-one-vue-tailwind**](https://github.com/justboil/admin-one-vue-tailwind/tree/master/) | 6s | [Data](./data/github.com/justboil/admin-one-vue-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kaanayyildiz/benfolio**](https://github.com/kaanayyildiz/benfolio/tree/main/) | 7s | [Data](./data/github.com/kaanayyildiz/benfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/kachidk/atlas**](https://github.com/kachidk/atlas/tree/master/) | 6s | [Data](./data/github.com/kachidk/atlas/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kailoon/kailoon.com**](https://github.com/kailoon/kailoon.com/tree/master/) | 7s | [Data](./data/github.com/kailoon/kailoon.com/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/kaito-http/react-template**](https://github.com/kaito-http/react-template/tree/master/) | *n/a* | [Data](./data/github.com/kaito-http/react-template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kalayciburak/CarRentalSystem-Frontend**](https://github.com/kalayciburak/CarRentalSystem-Frontend/tree/master/) | 5s | [Data](./data/github.com/kalayciburak/CarRentalSystem-Frontend/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kalimahapps/vue-options-to-composition**](https://github.com/kalimahapps/vue-options-to-composition/tree/master/) | 7s | [Data](./data/github.com/kalimahapps/vue-options-to-composition/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kamona-ui/kui-dashboard-vue**](https://github.com/kamona-ui/kui-dashboard-vue/tree/main/) | 9s | [Data](./data/github.com/kamona-ui/kui-dashboard-vue/bWFpbgo/Cg) |
| ✅ | [**github.com/kamranahmedse/developer-roadmap**](https://github.com/kamranahmedse/developer-roadmap/tree/master/) | 28s | [Data](./data/github.com/kamranahmedse/developer-roadmap/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kamranahmedse/driver.js**](https://github.com/kamranahmedse/driver.js/tree/master/docs) (`docs`) | 20s | [Data](./data/github.com/kamranahmedse/driver.js/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/karanpratapsingh/portfolio**](https://github.com/karanpratapsingh/portfolio/tree/master/) | 11s | [Data](./data/github.com/karanpratapsingh/portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/karelnagel/QuickGPT**](https://github.com/karelnagel/QuickGPT/tree/main/app) (`app`) | 38s | [Data](./data/github.com/karelnagel/QuickGPT/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/karelnagel/QuickGPT**](https://github.com/karelnagel/QuickGPT/tree/main/landing) (`landing`) | 43s | [Data](./data/github.com/karelnagel/QuickGPT/bWFpbgo/bGFuZGluZwo) |
| ✅ | [**github.com/karthickthankyou/foundationx-workshop**](https://github.com/karthickthankyou/foundationx-workshop/tree/main/apps%2Fweb) (`apps/web`) | 1m | [Data](./data/github.com/karthickthankyou/foundationx-workshop/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/karthickthankyou/foundationx-workshop**](https://github.com/karthickthankyou/foundationx-workshop/tree/main/libs%2Fui) (`libs/ui`) | 59s | [Data](./data/github.com/karthickthankyou/foundationx-workshop/bWFpbgo/bGlicy91aQo) |
| ✅ | [**github.com/karthickthankyou/supply-chain-x-workshop**](https://github.com/karthickthankyou/supply-chain-x-workshop/tree/main/apps%2Fweb) (`apps/web`) | 1m 21s | [Data](./data/github.com/karthickthankyou/supply-chain-x-workshop/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/karthickthankyou/supply-chain-x-workshop**](https://github.com/karthickthankyou/supply-chain-x-workshop/tree/main/libs%2Fui) (`libs/ui`) | 1m 8s | [Data](./data/github.com/karthickthankyou/supply-chain-x-workshop/bWFpbgo/bGlicy91aQo) |
| ✅ | [**github.com/kartikpavan/Fullstack-Ecommerce**](https://github.com/kartikpavan/Fullstack-Ecommerce/tree/main/) | 9s | [Data](./data/github.com/kartikpavan/Fullstack-Ecommerce/bWFpbgo/Cg) |
| ✅ | [**github.com/kawalcovid19/wargabantuwarga.com**](https://github.com/kawalcovid19/wargabantuwarga.com/tree/main/) | 2m 13s | [Data](./data/github.com/kawalcovid19/wargabantuwarga.com/bWFpbgo/Cg) |
| ✅ | [**github.com/kawamataryo/ime-submit-blocker**](https://github.com/kawamataryo/ime-submit-blocker/tree/main/) | 9s | [Data](./data/github.com/kawamataryo/ime-submit-blocker/bWFpbgo/Cg) |
| ✅ | [**github.com/kayooliveira/plinko-game**](https://github.com/kayooliveira/plinko-game/tree/current/) | 45s | [Data](./data/github.com/kayooliveira/plinko-game/Y3VycmVudAo/Cg) |
| ✅ | [**github.com/kehyshow/E-Commerce-OnlineShop**](https://github.com/kehyshow/E-Commerce-OnlineShop/tree/main/) | 9s | [Data](./data/github.com/kehyshow/E-Commerce-OnlineShop/bWFpbgo/Cg) |
| ✅ | [**github.com/kelilipan/wisesa.dev**](https://github.com/kelilipan/wisesa.dev/tree/main/) | 13s | [Data](./data/github.com/kelilipan/wisesa.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/kernel-community/convo-app**](https://github.com/kernel-community/convo-app/tree/staging/) | 7s | [Data](./data/github.com/kernel-community/convo-app/c3RhZ2luZwo/Cg) |
| ✅ | [**github.com/kevhjc/clementine**](https://github.com/kevhjc/clementine/tree/main/) | 10s | [Data](./data/github.com/kevhjc/clementine/bWFpbgo/Cg) |
| ✅ | [**github.com/kevinzunigacuellar/web**](https://github.com/kevinzunigacuellar/web/tree/main/) | 25s | [Data](./data/github.com/kevinzunigacuellar/web/bWFpbgo/Cg) |
| ✅ | [**github.com/kfirfitousi/blog**](https://github.com/kfirfitousi/blog/tree/prod/) | 9s | [Data](./data/github.com/kfirfitousi/blog/cHJvZAo/Cg) |
| ✅ | [**github.com/kgrg/vue3-tailwind-todo**](https://github.com/kgrg/vue3-tailwind-todo/tree/main/) | 8s | [Data](./data/github.com/kgrg/vue3-tailwind-todo/bWFpbgo/Cg) |
| ✅ | [**github.com/khazifire/DripUI**](https://github.com/khazifire/DripUI/tree/main/) | 7s | [Data](./data/github.com/khazifire/DripUI/bWFpbgo/Cg) |
| ✅ | [**github.com/kidunot89/woographql-demo**](https://github.com/kidunot89/woographql-demo/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/kidunot89/woographql-demo/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/kishanrajput23/Awesome-Project-Collection**](https://github.com/kishanrajput23/Awesome-Project-Collection/tree/main/candy-crush-clone-react) (`candy-crush-clone-react`) | 21s | [Data](./data/github.com/kishanrajput23/Awesome-Project-Collection/bWFpbgo/Y2FuZHktY3J1c2gtY2xvbmUtcmVhY3QK) |
| ✅ | [**github.com/kishanrajput23/Web-Development-Projects**](https://github.com/kishanrajput23/Web-Development-Projects/tree/main/covid-tracker) (`covid-tracker`) | 45s | [Data](./data/github.com/kishanrajput23/Web-Development-Projects/bWFpbgo/Y292aWQtdHJhY2tlcgo) |
| ❌ | [**github.com/kiwicom/orbit**](https://github.com/kiwicom/orbit/tree/master/docs) (`docs`) | *n/a* | [Data](./data/github.com/kiwicom/orbit/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/kiwicom/orbit**](https://github.com/kiwicom/orbit/tree/master/packages%2Forbit-components) (`packages/orbit-components`) | 37s | [Data](./data/github.com/kiwicom/orbit/bWFzdGVyCg/cGFja2FnZXMvb3JiaXQtY29tcG9uZW50cwo) |
| ❌ | [**github.com/kiwicom/orbit**](https://github.com/kiwicom/orbit/tree/master/packages%2Forbit-tailwind-preset) (`packages/orbit-tailwind-preset`) | *n/a* | [Data](./data/github.com/kiwicom/orbit/bWFzdGVyCg/cGFja2FnZXMvb3JiaXQtdGFpbHdpbmQtcHJlc2V0Cg) |
| ✅ | [**github.com/kjmczk/nextjs-mdx-food-blog**](https://github.com/kjmczk/nextjs-mdx-food-blog/tree/main/) | 10s | [Data](./data/github.com/kjmczk/nextjs-mdx-food-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/knoopx/cmc-menulet**](https://github.com/knoopx/cmc-menulet/tree/master/) | 9s | [Data](./data/github.com/knoopx/cmc-menulet/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/kobaltedev/pigment**](https://github.com/kobaltedev/pigment/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/kobaltedev/pigment/bWFpbgo/YXBwcy9kb2NzCg) |
| ❌ | [**github.com/kobaltedev/pigment**](https://github.com/kobaltedev/pigment/tree/main/apps%2Fplayground) (`apps/playground`) | *n/a* | [Data](./data/github.com/kobaltedev/pigment/bWFpbgo/YXBwcy9wbGF5Z3JvdW5kCg) |
| ❌ | [**github.com/kobaltedev/pigment**](https://github.com/kobaltedev/pigment/tree/main/packages%2Fpigment) (`packages/pigment`) | *n/a* | [Data](./data/github.com/kobaltedev/pigment/bWFpbgo/cGFja2FnZXMvcGlnbWVudAo) |
| ✅ | [**github.com/kochan4php/kokunime**](https://github.com/kochan4php/kokunime/tree/main/) | 6s | [Data](./data/github.com/kochan4php/kokunime/bWFpbgo/Cg) |
| ❌ | [**github.com/kodadot/nft-gallery**](https://github.com/kodadot/nft-gallery/tree/main/) | *n/a* | [Data](./data/github.com/kodadot/nft-gallery/bWFpbgo/Cg) |
| ✅ | [**github.com/kodadot/nft-gallery**](https://github.com/kodadot/nft-gallery/tree/main/libs%2Fui) (`libs/ui`) | 37s | [Data](./data/github.com/kodadot/nft-gallery/bWFpbgo/bGlicy91aQo) |
| ✅ | [**github.com/koddr/reactless-ts**](https://github.com/koddr/reactless-ts/tree/master/) | 10s | [Data](./data/github.com/koddr/reactless-ts/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kogakure/website-astro-stefanimhoff.de**](https://github.com/kogakure/website-astro-stefanimhoff.de/tree/master/) | 33s | [Data](./data/github.com/kogakure/website-astro-stefanimhoff.de/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kohii/medi-xplorer**](https://github.com/kohii/medi-xplorer/tree/main/) | 8s | [Data](./data/github.com/kohii/medi-xplorer/bWFpbgo/Cg) |
| ✅ | [**github.com/kohrongying/11ty-blog-starter**](https://github.com/kohrongying/11ty-blog-starter/tree/master/) | 18s | [Data](./data/github.com/kohrongying/11ty-blog-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kometolabs/vite-tailwind-nojs-starter**](https://github.com/kometolabs/vite-tailwind-nojs-starter/tree/main/) | 9s | [Data](./data/github.com/kometolabs/vite-tailwind-nojs-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/komodorio/helm-dashboard**](https://github.com/komodorio/helm-dashboard/tree/main/frontend) (`frontend`) | 17s | [Data](./data/github.com/komodorio/helm-dashboard/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/konstaui/konsta**](https://github.com/konstaui/konsta/tree/master/) | 9s | [Data](./data/github.com/konstaui/konsta/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kontenbase-team/kontenbase-web-v2**](https://github.com/kontenbase-team/kontenbase-web-v2/tree/main/) | 12s | [Data](./data/github.com/kontenbase-team/kontenbase-web-v2/bWFpbgo/Cg) |
| ✅ | [**github.com/korosuke613/homepage-2nd**](https://github.com/korosuke613/homepage-2nd/tree/main/) | 26s | [Data](./data/github.com/korosuke613/homepage-2nd/bWFpbgo/Cg) |
| ✅ | [**github.com/kossnocorp/opensource.how**](https://github.com/kossnocorp/opensource.how/tree/main/) | 7m 23s | [Data](./data/github.com/kossnocorp/opensource.how/bWFpbgo/Cg) |
| ✅ | [**github.com/kosvrouvas/gatsby-tailwindcss-starter**](https://github.com/kosvrouvas/gatsby-tailwindcss-starter/tree/master/) | 8s | [Data](./data/github.com/kosvrouvas/gatsby-tailwindcss-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kouhei-github/screenshot-to-code**](https://github.com/kouhei-github/screenshot-to-code/tree/main/frontend) (`frontend`) | 6s | [Data](./data/github.com/kouhei-github/screenshot-to-code/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/kripod/next-starter-strict**](https://github.com/kripod/next-starter-strict/tree/main/) | 7s | [Data](./data/github.com/kripod/next-starter-strict/bWFpbgo/Cg) |
| ✅ | [**github.com/kriswep/cra-tailwindcss**](https://github.com/kriswep/cra-tailwindcss/tree/master/) | 18s | [Data](./data/github.com/kriswep/cra-tailwindcss/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kromate/faceReg**](https://github.com/kromate/faceReg/tree/master/) | 11s | [Data](./data/github.com/kromate/faceReg/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kromate/vue3-gsap-animations**](https://github.com/kromate/vue3-gsap-animations/tree/main/) | 10s | [Data](./data/github.com/kromate/vue3-gsap-animations/bWFpbgo/Cg) |
| ✅ | [**github.com/kruzhok-team/lapki-client**](https://github.com/kruzhok-team/lapki-client/tree/main/) | 8s | [Data](./data/github.com/kruzhok-team/lapki-client/bWFpbgo/Cg) |
| ✅ | [**github.com/krzysztoff1/generative-ui**](https://github.com/krzysztoff1/generative-ui/tree/main/) | 7s | [Data](./data/github.com/krzysztoff1/generative-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/kt474/tailwind-converter**](https://github.com/kt474/tailwind-converter/tree/main/) | 9s | [Data](./data/github.com/kt474/tailwind-converter/bWFpbgo/Cg) |
| ✅ | [**github.com/kualta/hemi**](https://github.com/kualta/hemi/tree/master/) | 8s | [Data](./data/github.com/kualta/hemi/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kufu/smarthr-ui**](https://github.com/kufu/smarthr-ui/tree/master/) | 1m 9s | [Data](./data/github.com/kufu/smarthr-ui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/kuizuo/nuxt-naive-admin**](https://github.com/kuizuo/nuxt-naive-admin/tree/main/) | 39s | [Data](./data/github.com/kuizuo/nuxt-naive-admin/bWFpbgo/Cg) |
| ✅ | [**github.com/kumard3/dev.ui**](https://github.com/kumard3/dev.ui/tree/main/) | 9s | [Data](./data/github.com/kumard3/dev.ui/bWFpbgo/Cg) |
| ✅ | [**github.com/kunal838/airbnb-clone**](https://github.com/kunal838/airbnb-clone/tree/main/) | 7s | [Data](./data/github.com/kunal838/airbnb-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/kxxoling/blog**](https://github.com/kxxoling/blog/tree/master/) | 11s | [Data](./data/github.com/kxxoling/blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ky-is/vitepress-starter-tailwind**](https://github.com/ky-is/vitepress-starter-tailwind/tree/main/) | 7s | [Data](./data/github.com/ky-is/vitepress-starter-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/kyooowe/PineUI**](https://github.com/kyooowe/PineUI/tree/master/apps%2Fdashboard) (`apps/dashboard`) | 7s | [Data](./data/github.com/kyooowe/PineUI/bWFzdGVyCg/YXBwcy9kYXNoYm9hcmQK) |
| ✅ | [**github.com/kyooowe/PineUI**](https://github.com/kyooowe/PineUI/tree/master/apps%2Fhome) (`apps/home`) | 6s | [Data](./data/github.com/kyooowe/PineUI/bWFzdGVyCg/YXBwcy9ob21lCg) |
| ✅ | [**github.com/lFandoriNl/chamaeleon**](https://github.com/lFandoriNl/chamaeleon/tree/master/packages%2Freact-editor) (`packages/react-editor`) | 33s | [Data](./data/github.com/lFandoriNl/chamaeleon/bWFzdGVyCg/cGFja2FnZXMvcmVhY3QtZWRpdG9yCg) |
| ✅ | [**github.com/lFandoriNl/chamaeleon**](https://github.com/lFandoriNl/chamaeleon/tree/master/packages%2Fuikit) (`packages/uikit`) | 50s | [Data](./data/github.com/lFandoriNl/chamaeleon/bWFzdGVyCg/cGFja2FnZXMvdWlraXQK) |
| ✅ | [**github.com/labring/laf**](https://github.com/labring/laf/tree/main/web) (`web`) | 9s | [Data](./data/github.com/labring/laf/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/labring/sealos**](https://github.com/labring/sealos/tree/main/docs%2Fwebsite) (`docs/website`) | 16s | [Data](./data/github.com/labring/sealos/bWFpbgo/ZG9jcy93ZWJzaXRlCg) |
| ✅ | [**github.com/ladunjexa/reactjs18-3d-portfolio**](https://github.com/ladunjexa/reactjs18-3d-portfolio/tree/main/) | 6s | [Data](./data/github.com/ladunjexa/reactjs18-3d-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/lalokalabs/tailwindlayout**](https://github.com/lalokalabs/tailwindlayout/tree/master/) | 16s | [Data](./data/github.com/lalokalabs/tailwindlayout/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lastrust/community-faucet**](https://github.com/lastrust/community-faucet/tree/main/app) (`app`) | 36s | [Data](./data/github.com/lastrust/community-faucet/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/laststance/create-react-app-vite**](https://github.com/laststance/create-react-app-vite/tree/main/) | 6s | [Data](./data/github.com/laststance/create-react-app-vite/bWFpbgo/Cg) |
| ✅ | [**github.com/lauragift21/giftegwuenu.dev**](https://github.com/lauragift21/giftegwuenu.dev/tree/master/) | 8s | [Data](./data/github.com/lauragift21/giftegwuenu.dev/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/lazercaveman/nuxt-starter**](https://github.com/lazercaveman/nuxt-starter/tree/main/) | *n/a* | [Data](./data/github.com/lazercaveman/nuxt-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/lazymozek/gulp-with-tailwindcss**](https://github.com/lazymozek/gulp-with-tailwindcss/tree/main/) | 10s | [Data](./data/github.com/lazymozek/gulp-with-tailwindcss/bWFpbgo/Cg) |
| ✅ | [**github.com/lcomplete/huntly**](https://github.com/lcomplete/huntly/tree/main/app%2Fclient) (`app/client`) | 13s | [Data](./data/github.com/lcomplete/huntly/bWFpbgo/YXBwL2NsaWVudAo) |
| ✅ | [**github.com/lcomplete/huntly**](https://github.com/lcomplete/huntly/tree/main/app%2Fextension) (`app/extension`) | 15s | [Data](./data/github.com/lcomplete/huntly/bWFpbgo/YXBwL2V4dGVuc2lvbgo) |
| ✅ | [**github.com/lcomplete/huntly**](https://github.com/lcomplete/huntly/tree/main/app%2Ftauri) (`app/tauri`) | 14s | [Data](./data/github.com/lcomplete/huntly/bWFpbgo/YXBwL3RhdXJpCg) |
| ✅ | [**github.com/leabs/astro-tailwind-flowbite-template**](https://github.com/leabs/astro-tailwind-flowbite-template/tree/master/) | 16s | [Data](./data/github.com/leabs/astro-tailwind-flowbite-template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/leapwallet/cosmos-extension**](https://github.com/leapwallet/cosmos-extension/tree/main/apps%2Fdemo) (`apps/demo`) | 6s | [Data](./data/github.com/leapwallet/cosmos-extension/bWFpbgo/YXBwcy9kZW1vCg) |
| ✅ | [**github.com/leapwallet/cosmos-extension**](https://github.com/leapwallet/cosmos-extension/tree/main/apps%2Fextension) (`apps/extension`) | 7s | [Data](./data/github.com/leapwallet/cosmos-extension/bWFpbgo/YXBwcy9leHRlbnNpb24K) |
| ✅ | [**github.com/learn-anything/learn-anything.xyz**](https://github.com/learn-anything/learn-anything.xyz/tree/dev/app) (`app`) | 44s | [Data](./data/github.com/learn-anything/learn-anything.xyz/ZGV2Cg/YXBwCg) |
| ❌ | [**github.com/learn-anything/learn-anything.xyz**](https://github.com/learn-anything/learn-anything.xyz/tree/dev/mobile) (`mobile`) | *n/a* | [Data](./data/github.com/learn-anything/learn-anything.xyz/ZGV2Cg/bW9iaWxlCg) |
| ✅ | [**github.com/learn-anything/learn-anything.xyz**](https://github.com/learn-anything/learn-anything.xyz/tree/dev/website) (`website`) | 41s | [Data](./data/github.com/learn-anything/learn-anything.xyz/ZGV2Cg/d2Vic2l0ZQo) |
| ✅ | [**github.com/lecoueyl/mijin**](https://github.com/lecoueyl/mijin/tree/main/) | 8s | [Data](./data/github.com/lecoueyl/mijin/bWFpbgo/Cg) |
| ✅ | [**github.com/lecoueyl/vue3-template**](https://github.com/lecoueyl/vue3-template/tree/main/) | 10s | [Data](./data/github.com/lecoueyl/vue3-template/bWFpbgo/Cg) |
| ✅ | [**github.com/leerob/dsmtech**](https://github.com/leerob/dsmtech/tree/main/) | 7s | [Data](./data/github.com/leerob/dsmtech/bWFpbgo/Cg) |
| ✅ | [**github.com/leerob/leerob.io**](https://github.com/leerob/leerob.io/tree/main/) | 11s | [Data](./data/github.com/leerob/leerob.io/bWFpbgo/Cg) |
| ✅ | [**github.com/lei1248276/MOO-music**](https://github.com/lei1248276/MOO-music/tree/main/) | 7s | [Data](./data/github.com/lei1248276/MOO-music/bWFpbgo/Cg) |
| ✅ | [**github.com/leoMirandaa/shadcn-landing-page**](https://github.com/leoMirandaa/shadcn-landing-page/tree/main/) | 5s | [Data](./data/github.com/leoMirandaa/shadcn-landing-page/bWFpbgo/Cg) |
| ✅ | [**github.com/leoafarias/fvm**](https://github.com/leoafarias/fvm/tree/main/docs) (`docs`) | 11s | [Data](./data/github.com/leoafarias/fvm/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/leon0399/leon0399.ru**](https://github.com/leon0399/leon0399.ru/tree/master/) | 12s | [Data](./data/github.com/leon0399/leon0399.ru/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/leopiresgoss/tour-hunter**](https://github.com/leopiresgoss/tour-hunter/tree/dev/) | 11s | [Data](./data/github.com/leopiresgoss/tour-hunter/ZGV2Cg/Cg) |
| ✅ | [**github.com/leptonai/search_with_lepton**](https://github.com/leptonai/search_with_lepton/tree/main/web) (`web`) | 11s | [Data](./data/github.com/leptonai/search_with_lepton/bWFpbgo/d2ViCg) |
| ❌ | [**github.com/letterpad/letterpad**](https://github.com/letterpad/letterpad/tree/master/apps%2Fclient) (`apps/client`) | *n/a* | [Data](./data/github.com/letterpad/letterpad/bWFzdGVyCg/YXBwcy9jbGllbnQK) |
| ✅ | [**github.com/lewisdoesstuff/bento-next**](https://github.com/lewisdoesstuff/bento-next/tree/master/) | 7s | [Data](./data/github.com/lewisdoesstuff/bento-next/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/libaro-io/sendwich**](https://github.com/libaro-io/sendwich/tree/master/) | 6s | [Data](./data/github.com/libaro-io/sendwich/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/librenms/librenms**](https://github.com/librenms/librenms/tree/master/) | 15s | [Data](./data/github.com/librenms/librenms/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lifeofsoumya/NextJS-featuredStarterTemplate**](https://github.com/lifeofsoumya/NextJS-featuredStarterTemplate/tree/master/) | 8s | [Data](./data/github.com/lifeofsoumya/NextJS-featuredStarterTemplate/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lightrail-ai/lightrail**](https://github.com/lightrail-ai/lightrail/tree/main/core) (`core`) | 7s | [Data](./data/github.com/lightrail-ai/lightrail/bWFpbgo/Y29yZQo) |
| ✅ | [**github.com/lightrail-ai/lightrail**](https://github.com/lightrail-ai/lightrail/tree/main/web) (`web`) | 8s | [Data](./data/github.com/lightrail-ai/lightrail/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/lightsound/nexst-tailwind**](https://github.com/lightsound/nexst-tailwind/tree/main/) | 7s | [Data](./data/github.com/lightsound/nexst-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/liruifengv/liruifengv.com**](https://github.com/liruifengv/liruifengv.com/tree/main/) | 45s | [Data](./data/github.com/liruifengv/liruifengv.com/bWFpbgo/Cg) |
| ❌ | [**github.com/little3201/leafage-pw**](https://github.com/little3201/leafage-pw/tree/main/) | *n/a* | [Data](./data/github.com/little3201/leafage-pw/bWFpbgo/Cg) |
| ✅ | [**github.com/livebook-dev/livebook**](https://github.com/livebook-dev/livebook/tree/main/assets) (`assets`) | 9s | [Data](./data/github.com/livebook-dev/livebook/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/ljosberinn/keystone-heroes**](https://github.com/ljosberinn/keystone-heroes/tree/master/) | 18s | [Data](./data/github.com/ljosberinn/keystone-heroes/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lmsqueezy/nextjs-billing**](https://github.com/lmsqueezy/nextjs-billing/tree/main/) | 10s | [Data](./data/github.com/lmsqueezy/nextjs-billing/bWFpbgo/Cg) |
| ✅ | [**github.com/lmsqueezy/wedges**](https://github.com/lmsqueezy/wedges/tree/main/) | 57s | [Data](./data/github.com/lmsqueezy/wedges/bWFpbgo/Cg) |
| ❌ | [**github.com/lmsqueezy/wedges**](https://github.com/lmsqueezy/wedges/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/lmsqueezy/wedges/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/lokkeestudios/lokkeestudios**](https://github.com/lokkeestudios/lokkeestudios/tree/main/) | 21s | [Data](./data/github.com/lokkeestudios/lokkeestudios/bWFpbgo/Cg) |
| ✅ | [**github.com/loljoshie/lj-boilerplate**](https://github.com/loljoshie/lj-boilerplate/tree/main/web) (`web`) | 8s | [Data](./data/github.com/loljoshie/lj-boilerplate/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/lostdesign/linked**](https://github.com/lostdesign/linked/tree/master/) | 9s | [Data](./data/github.com/lostdesign/linked/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lsuan/link-up**](https://github.com/lsuan/link-up/tree/master/app) (`app`) | 7s | [Data](./data/github.com/lsuan/link-up/bWFzdGVyCg/YXBwCg) |
| ✅ | [**github.com/ltv/argon-dashboard-vue3**](https://github.com/ltv/argon-dashboard-vue3/tree/main/) | 9s | [Data](./data/github.com/ltv/argon-dashboard-vue3/bWFpbgo/Cg) |
| ✅ | [**github.com/lubkoKuzenko/ng-start**](https://github.com/lubkoKuzenko/ng-start/tree/master/) | 8s | [Data](./data/github.com/lubkoKuzenko/ng-start/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lucademenego99/icp-editor**](https://github.com/lucademenego99/icp-editor/tree/main/) | 9s | [Data](./data/github.com/lucademenego99/icp-editor/bWFpbgo/Cg) |
| ✅ | [**github.com/lucas-dash/Dynamic-Island**](https://github.com/lucas-dash/Dynamic-Island/tree/main/) | 6s | [Data](./data/github.com/lucas-dash/Dynamic-Island/bWFpbgo/Cg) |
| ✅ | [**github.com/lucasgdb/will-you-marry-me**](https://github.com/lucasgdb/will-you-marry-me/tree/main/) | 9s | [Data](./data/github.com/lucasgdb/will-you-marry-me/bWFpbgo/Cg) |
| ❌ | [**github.com/lucasmerlin/hurlurl**](https://github.com/lucasmerlin/hurlurl/tree/master/) | *n/a* | [Data](./data/github.com/lucasmerlin/hurlurl/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lucasmrl/chat-app**](https://github.com/lucasmrl/chat-app/tree/master/client) (`client`) | 11s | [Data](./data/github.com/lucasmrl/chat-app/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/lucasvallejo1992/vue-notifications**](https://github.com/lucasvallejo1992/vue-notifications/tree/main/) | 8s | [Data](./data/github.com/lucasvallejo1992/vue-notifications/bWFpbgo/Cg) |
| ✅ | [**github.com/luciano-work/angular-tailwind**](https://github.com/luciano-work/angular-tailwind/tree/main/) | 8s | [Data](./data/github.com/luciano-work/angular-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/lucien144/vue3-parallaxy**](https://github.com/lucien144/vue3-parallaxy/tree/main/) | 7s | [Data](./data/github.com/lucien144/vue3-parallaxy/bWFpbgo/Cg) |
| ✅ | [**github.com/lucifer1004/my-chatgpt**](https://github.com/lucifer1004/my-chatgpt/tree/main/) | 11s | [Data](./data/github.com/lucifer1004/my-chatgpt/bWFpbgo/Cg) |
| ✅ | [**github.com/luciovilla/notion-nextjs-blog**](https://github.com/luciovilla/notion-nextjs-blog/tree/main/) | 9s | [Data](./data/github.com/luciovilla/notion-nextjs-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/lukemcdonald/holly-react**](https://github.com/lukemcdonald/holly-react/tree/main/) | 8s | [Data](./data/github.com/lukemcdonald/holly-react/bWFpbgo/Cg) |
| ✅ | [**github.com/lukemcdonald/jplayer-skin-premium-pixels**](https://github.com/lukemcdonald/jplayer-skin-premium-pixels/tree/main/) | 6s | [Data](./data/github.com/lukemcdonald/jplayer-skin-premium-pixels/bWFpbgo/Cg) |
| ❌ | [**github.com/lukeshay/ui**](https://github.com/lukeshay/ui/tree/main/apps%2Fwww) (`apps/www`) | *n/a* | [Data](./data/github.com/lukeshay/ui/bWFpbgo/YXBwcy93d3cK) |
| ✅ | [**github.com/lukevella/rallly**](https://github.com/lukevella/rallly/tree/main/apps%2Flanding) (`apps/landing`) | 5m 13s | [Data](./data/github.com/lukevella/rallly/bWFpbgo/YXBwcy9sYW5kaW5nCg) |
| ✅ | [**github.com/lukevella/rallly**](https://github.com/lukevella/rallly/tree/main/apps%2Fweb) (`apps/web`) | 5m 13s | [Data](./data/github.com/lukevella/rallly/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/lukevella/rallly**](https://github.com/lukevella/rallly/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 5m 52s | [Data](./data/github.com/lukevella/rallly/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/lukevella/rallly**](https://github.com/lukevella/rallly/tree/main/packages%2Fui) (`packages/ui`) | 4m 30s | [Data](./data/github.com/lukevella/rallly/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/lukin/keywind**](https://github.com/lukin/keywind/tree/master/) | 9s | [Data](./data/github.com/lukin/keywind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/lvwzhen/law-cn-ai**](https://github.com/lvwzhen/law-cn-ai/tree/main/) | 6s | [Data](./data/github.com/lvwzhen/law-cn-ai/bWFpbgo/Cg) |
| ✅ | [**github.com/lwinmoepaing/lwinmoepaing.github.io**](https://github.com/lwinmoepaing/lwinmoepaing.github.io/tree/master/) | 8s | [Data](./data/github.com/lwinmoepaing/lwinmoepaing.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/m6v3l9/astro-theme-stone**](https://github.com/m6v3l9/astro-theme-stone/tree/main/) | 1m | [Data](./data/github.com/m6v3l9/astro-theme-stone/bWFpbgo/Cg) |
| ✅ | [**github.com/mac-eth/nextjs-nextauth-discord-tutorial**](https://github.com/mac-eth/nextjs-nextauth-discord-tutorial/tree/main/) | 5s | [Data](./data/github.com/mac-eth/nextjs-nextauth-discord-tutorial/bWFpbgo/Cg) |
| ✅ | [**github.com/madbull12/t3-twitter-clone**](https://github.com/madbull12/t3-twitter-clone/tree/main/) | 8s | [Data](./data/github.com/madbull12/t3-twitter-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/magicbyt3/centauri**](https://github.com/magicbyt3/centauri/tree/master/) | 7s | [Data](./data/github.com/magicbyt3/centauri/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/magicmark/programming-protips-wiki**](https://github.com/magicmark/programming-protips-wiki/tree/master/) | 9s | [Data](./data/github.com/magicmark/programming-protips-wiki/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mahbubmaruf178/one-index**](https://github.com/mahbubmaruf178/one-index/tree/master/) | 27s | [Data](./data/github.com/mahbubmaruf178/one-index/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/maizzle/maizzle**](https://github.com/maizzle/maizzle/tree/master/) | 35s | [Data](./data/github.com/maizzle/maizzle/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/makeplane/plane**](https://github.com/makeplane/plane/tree/preview/packages%2Ftailwind-config-custom) (`packages/tailwind-config-custom`) | 11s | [Data](./data/github.com/makeplane/plane/cHJldmlldwo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnLWN1c3RvbQo) |
| ✅ | [**github.com/makeplane/plane**](https://github.com/makeplane/plane/tree/preview/packages%2Fui) (`packages/ui`) | 3m 4s | [Data](./data/github.com/makeplane/plane/cHJldmlldwo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/makeplane/plane**](https://github.com/makeplane/plane/tree/preview/space) (`space`) | 3m 2s | [Data](./data/github.com/makeplane/plane/cHJldmlldwo/c3BhY2UK) |
| ✅ | [**github.com/makeplane/plane**](https://github.com/makeplane/plane/tree/preview/web) (`web`) | 2m 59s | [Data](./data/github.com/makeplane/plane/cHJldmlldwo/d2ViCg) |
| ✅ | [**github.com/makerkit/next-tinacms-blog-kit**](https://github.com/makerkit/next-tinacms-blog-kit/tree/main/) | 6s | [Data](./data/github.com/makerkit/next-tinacms-blog-kit/bWFpbgo/Cg) |
| ✅ | [**github.com/manifoldmarkets/manifold**](https://github.com/manifoldmarkets/manifold/tree/main/twitch-bot%2Fweb) (`twitch-bot/web`) | 57s | [Data](./data/github.com/manifoldmarkets/manifold/bWFpbgo/dHdpdGNoLWJvdC93ZWIK) |
| ✅ | [**github.com/manifoldmarkets/manifold**](https://github.com/manifoldmarkets/manifold/tree/main/web) (`web`) | 12s | [Data](./data/github.com/manifoldmarkets/manifold/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/manuarora700/manuarora.in**](https://github.com/manuarora700/manuarora.in/tree/master/) | 28s | [Data](./data/github.com/manuarora700/manuarora.in/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/manuarora700/simple-developer-portfolio-website**](https://github.com/manuarora700/simple-developer-portfolio-website/tree/main/) | 10s | [Data](./data/github.com/manuarora700/simple-developer-portfolio-website/bWFpbgo/Cg) |
| ✅ | [**github.com/manuelernestog/astrofy**](https://github.com/manuelernestog/astrofy/tree/main/) | 27s | [Data](./data/github.com/manuelernestog/astrofy/bWFpbgo/Cg) |
| ✅ | [**github.com/manyuemeiquqi/vue-tsx-admin**](https://github.com/manyuemeiquqi/vue-tsx-admin/tree/master/) | 7s | [Data](./data/github.com/manyuemeiquqi/vue-tsx-admin/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/manzanotti/saferstreetmaker**](https://github.com/manzanotti/saferstreetmaker/tree/main/) | 13s | [Data](./data/github.com/manzanotti/saferstreetmaker/bWFpbgo/Cg) |
| ✅ | [**github.com/mapbox/geojson.io**](https://github.com/mapbox/geojson.io/tree/main/) | 11s | [Data](./data/github.com/mapbox/geojson.io/bWFpbgo/Cg) |
| ✅ | [**github.com/maproulette/docs**](https://github.com/maproulette/docs/tree/main/) | 13s | [Data](./data/github.com/maproulette/docs/bWFpbgo/Cg) |
| ✅ | [**github.com/maqi1520/nextjs-tailwind-blog**](https://github.com/maqi1520/nextjs-tailwind-blog/tree/main/) | 14s | [Data](./data/github.com/maqi1520/nextjs-tailwind-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/maqi1520/runjs.cool**](https://github.com/maqi1520/runjs.cool/tree/main/) | 7s | [Data](./data/github.com/maqi1520/runjs.cool/bWFpbgo/Cg) |
| ✅ | [**github.com/marc2332/portfolio**](https://github.com/marc2332/portfolio/tree/main/) | 7s | [Data](./data/github.com/marc2332/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/marcamos/jet**](https://github.com/marcamos/jet/tree/master/) | 7s | [Data](./data/github.com/marcamos/jet/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/marcus-crane/october**](https://github.com/marcus-crane/october/tree/main/frontend) (`frontend`) | 10s | [Data](./data/github.com/marcus-crane/october/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/marcushellberg/docs-assistant**](https://github.com/marcushellberg/docs-assistant/tree/main/) | 6s | [Data](./data/github.com/marcushellberg/docs-assistant/bWFpbgo/Cg) |
| ✅ | [**github.com/marigold-ui/marigold**](https://github.com/marigold-ui/marigold/tree/main/config%2Fstorybook) (`config/storybook`) | 1m 19s | [Data](./data/github.com/marigold-ui/marigold/bWFpbgo/Y29uZmlnL3N0b3J5Ym9vawo) |
| ✅ | [**github.com/marigold-ui/marigold**](https://github.com/marigold-ui/marigold/tree/main/docs) (`docs`) | 3m 7s | [Data](./data/github.com/marigold-ui/marigold/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/marigold-ui/marigold**](https://github.com/marigold-ui/marigold/tree/main/themes%2Ftheme-b2b) (`themes/theme-b2b`) | 2m 58s | [Data](./data/github.com/marigold-ui/marigold/bWFpbgo/dGhlbWVzL3RoZW1lLWIyYgo) |
| ✅ | [**github.com/marigold-ui/marigold**](https://github.com/marigold-ui/marigold/tree/main/themes%2Ftheme-core) (`themes/theme-core`) | 3m 13s | [Data](./data/github.com/marigold-ui/marigold/bWFpbgo/dGhlbWVzL3RoZW1lLWNvcmUK) |
| ✅ | [**github.com/marimo-team/marimo**](https://github.com/marimo-team/marimo/tree/main/frontend) (`frontend`) | 15s | [Data](./data/github.com/marimo-team/marimo/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/markuplint/markuplint**](https://github.com/markuplint/markuplint/tree/dev/playground) (`playground`) | 54s | [Data](./data/github.com/markuplint/markuplint/ZGV2Cg/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/martykuentzel/sveltekit-tailwind-ecommerce**](https://github.com/martykuentzel/sveltekit-tailwind-ecommerce/tree/master/) | 8s | [Data](./data/github.com/martykuentzel/sveltekit-tailwind-ecommerce/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/maruffahmed/AlgoVisu**](https://github.com/maruffahmed/AlgoVisu/tree/main/) | 12s | [Data](./data/github.com/maruffahmed/AlgoVisu/bWFpbgo/Cg) |
| ✅ | [**github.com/marwanm-dev/Devto-clone**](https://github.com/marwanm-dev/Devto-clone/tree/main/client) (`client`) | 12s | [Data](./data/github.com/marwanm-dev/Devto-clone/bWFpbgo/Y2xpZW50Cg) |
| ❌ | [**github.com/mastodon/joinmastodon**](https://github.com/mastodon/joinmastodon/tree/main/) | *n/a* | [Data](./data/github.com/mastodon/joinmastodon/bWFpbgo/Cg) |
| ✅ | [**github.com/masudranashawon/proxima-client**](https://github.com/masudranashawon/proxima-client/tree/main/) | 8s | [Data](./data/github.com/masudranashawon/proxima-client/bWFpbgo/Cg) |
| ✅ | [**github.com/matheins/Dorf**](https://github.com/matheins/Dorf/tree/main/) | 10s | [Data](./data/github.com/matheins/Dorf/bWFpbgo/Cg) |
| ✅ | [**github.com/matijagrcic/azurechatgpt**](https://github.com/matijagrcic/azurechatgpt/tree/main/) | 6s | [Data](./data/github.com/matijagrcic/azurechatgpt/bWFpbgo/Cg) |
| ✅ | [**github.com/matijaoe/frontend_mentor**](https://github.com/matijaoe/frontend_mentor/tree/master/todo-app) (`todo-app`) | 10s | [Data](./data/github.com/matijaoe/frontend_mentor/bWFzdGVyCg/dG9kby1hcHAK) |
| ✅ | [**github.com/matryer/xbar**](https://github.com/matryer/xbar/tree/main/app%2Ffrontend) (`app/frontend`) | 11s | [Data](./data/github.com/matryer/xbar/bWFpbgo/YXBwL2Zyb250ZW5kCg) |
| ✅ | [**github.com/mattlehrer/whomtofollow**](https://github.com/mattlehrer/whomtofollow/tree/main/) | 7s | [Data](./data/github.com/mattlehrer/whomtofollow/bWFpbgo/Cg) |
| ✅ | [**github.com/mattwaler/tea-stack**](https://github.com/mattwaler/tea-stack/tree/main/) | 8s | [Data](./data/github.com/mattwaler/tea-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/mauriciobraz/next.js-telegram-webapp**](https://github.com/mauriciobraz/next.js-telegram-webapp/tree/main/) | 7s | [Data](./data/github.com/mauriciobraz/next.js-telegram-webapp/bWFpbgo/Cg) |
| ✅ | [**github.com/maxjerry0107/sveltekit-weather-app**](https://github.com/maxjerry0107/sveltekit-weather-app/tree/main/) | 8s | [Data](./data/github.com/maxjerry0107/sveltekit-weather-app/bWFpbgo/Cg) |
| ✅ | [**github.com/maxpatiiuk/project-ephemeris**](https://github.com/maxpatiiuk/project-ephemeris/tree/main/) | 7s | [Data](./data/github.com/maxpatiiuk/project-ephemeris/bWFpbgo/Cg) |
| ✅ | [**github.com/maxstue/vite-reactts-electron-starter**](https://github.com/maxstue/vite-reactts-electron-starter/tree/main/) | 10s | [Data](./data/github.com/maxstue/vite-reactts-electron-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/mazipan/pramuka.online**](https://github.com/mazipan/pramuka.online/tree/master/) | 7s | [Data](./data/github.com/mazipan/pramuka.online/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mbaraa/dotsync**](https://github.com/mbaraa/dotsync/tree/main/website) (`website`) | 6s | [Data](./data/github.com/mbaraa/dotsync/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/mckaywrigley/chatbot-ui**](https://github.com/mckaywrigley/chatbot-ui/tree/main/) | 8s | [Data](./data/github.com/mckaywrigley/chatbot-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/mcosta74/game-of-life**](https://github.com/mcosta74/game-of-life/tree/main/frontend) (`frontend`) | 8s | [Data](./data/github.com/mcosta74/game-of-life/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/mdbootstrap/TW-Elements**](https://github.com/mdbootstrap/TW-Elements/tree/master/) | 9s | [Data](./data/github.com/mdbootstrap/TW-Elements/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/mdbootstrap/TW-Elements**](https://github.com/mdbootstrap/TW-Elements/tree/master/site) (`site`) | *n/a* | [Data](./data/github.com/mdbootstrap/TW-Elements/bWFzdGVyCg/c2l0ZQo) |
| ✅ | [**github.com/medusajs/nextjs-starter-medusa**](https://github.com/medusajs/nextjs-starter-medusa/tree/main/) | 22s | [Data](./data/github.com/medusajs/nextjs-starter-medusa/bWFpbgo/Cg) |
| ✅ | [**github.com/memgraph/documentation**](https://github.com/memgraph/documentation/tree/main/) | 10s | [Data](./data/github.com/memgraph/documentation/bWFpbgo/Cg) |
| ✅ | [**github.com/meoyawn/moscow-cancer**](https://github.com/meoyawn/moscow-cancer/tree/main/) | 6s | [Data](./data/github.com/meoyawn/moscow-cancer/bWFpbgo/Cg) |
| ✅ | [**github.com/mertthesamael/lalasia**](https://github.com/mertthesamael/lalasia/tree/master/) | 8s | [Data](./data/github.com/mertthesamael/lalasia/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mgtourney/bocchi**](https://github.com/mgtourney/bocchi/tree/dev/web) (`web`) | 10s | [Data](./data/github.com/mgtourney/bocchi/ZGV2Cg/d2ViCg) |
| ✅ | [**github.com/mhamzashaikh/React-Inventory-Management-System**](https://github.com/mhamzashaikh/React-Inventory-Management-System/tree/main/Frontend) (`Frontend`) | 6s | [Data](./data/github.com/mhamzashaikh/React-Inventory-Management-System/bWFpbgo/RnJvbnRlbmQK) |
| ✅ | [**github.com/mhyfritz/astro-landing-page**](https://github.com/mhyfritz/astro-landing-page/tree/main/) | 20s | [Data](./data/github.com/mhyfritz/astro-landing-page/bWFpbgo/Cg) |
| ✅ | [**github.com/michael-andreuzza/minimalstudio**](https://github.com/michael-andreuzza/minimalstudio/tree/main/) | 20s | [Data](./data/github.com/michael-andreuzza/minimalstudio/bWFpbgo/Cg) |
| ✅ | [**github.com/michael-awe/django-template**](https://github.com/michael-awe/django-template/tree/main/theme%2Fstatic_src) (`theme/static_src`) | 7s | [Data](./data/github.com/michael-awe/django-template/bWFpbgo/dGhlbWUvc3RhdGljX3NyYwo) |
| ✅ | [**github.com/michelegera/tailwindcss-open-template**](https://github.com/michelegera/tailwindcss-open-template/tree/main/) | 10s | [Data](./data/github.com/michelegera/tailwindcss-open-template/bWFpbgo/Cg) |
| ✅ | [**github.com/mickasmt/astro-nomy**](https://github.com/mickasmt/astro-nomy/tree/master/) | 21s | [Data](./data/github.com/mickasmt/astro-nomy/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/microfeed/microfeed**](https://github.com/microfeed/microfeed/tree/main/) | 13s | [Data](./data/github.com/microfeed/microfeed/bWFpbgo/Cg) |
| ✅ | [**github.com/microsoft/FluidExamples**](https://github.com/microsoft/FluidExamples/tree/main/brainstorm) (`brainstorm`) | 7s | [Data](./data/github.com/microsoft/FluidExamples/bWFpbgo/YnJhaW5zdG9ybQo) |
| ✅ | [**github.com/microsoft/FluidExamples**](https://github.com/microsoft/FluidExamples/tree/main/item-counter) (`item-counter`) | 6s | [Data](./data/github.com/microsoft/FluidExamples/bWFpbgo/aXRlbS1jb3VudGVyCg) |
| ✅ | [**github.com/microsoft/FluidExamples**](https://github.com/microsoft/FluidExamples/tree/main/item-counter-spe) (`item-counter-spe`) | 6s | [Data](./data/github.com/microsoft/FluidExamples/bWFpbgo/aXRlbS1jb3VudGVyLXNwZQo) |
| ✅ | [**github.com/microsoft/azurechat**](https://github.com/microsoft/azurechat/tree/main/src) (`src`) | 5s | [Data](./data/github.com/microsoft/azurechat/bWFpbgo/c3JjCg) |
| ✅ | [**github.com/microsoft/fabricnotes**](https://github.com/microsoft/fabricnotes/tree/main/build) (`build`) | 6s | [Data](./data/github.com/microsoft/fabricnotes/bWFpbgo/YnVpbGQK) |
| ✅ | [**github.com/microsoft/pxt**](https://github.com/microsoft/pxt/tree/master/multiplayer) (`multiplayer`) | 17s | [Data](./data/github.com/microsoft/pxt/bWFzdGVyCg/bXVsdGlwbGF5ZXIK) |
| ✅ | [**github.com/midarrlabs/midarr-server**](https://github.com/midarrlabs/midarr-server/tree/master/assets) (`assets`) | 22s | [Data](./data/github.com/midarrlabs/midarr-server/bWFzdGVyCg/YXNzZXRzCg) |
| ✅ | [**github.com/midas95/svelte-pocketbase**](https://github.com/midas95/svelte-pocketbase/tree/master/apps%2Fweb) (`apps/web`) | 8s | [Data](./data/github.com/midas95/svelte-pocketbase/bWFzdGVyCg/YXBwcy93ZWIK) |
| ✅ | [**github.com/midudev/midu-excel**](https://github.com/midudev/midu-excel/tree/main/) | 4s | [Data](./data/github.com/midudev/midu-excel/bWFpbgo/Cg) |
| ✅ | [**github.com/midudev/tailwind-animations**](https://github.com/midudev/tailwind-animations/tree/main/web) (`web`) | 39s | [Data](./data/github.com/midudev/tailwind-animations/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/migmig69/market-mimic**](https://github.com/migmig69/market-mimic/tree/main/) | 17s | [Data](./data/github.com/migmig69/market-mimic/bWFpbgo/Cg) |
| ✅ | [**github.com/mikaeljorhult/hydrofon**](https://github.com/mikaeljorhult/hydrofon/tree/main/) | 8s | [Data](./data/github.com/mikaeljorhult/hydrofon/bWFpbgo/Cg) |
| ✅ | [**github.com/mikebarlow/megaphone**](https://github.com/mikebarlow/megaphone/tree/main/) | 6s | [Data](./data/github.com/mikebarlow/megaphone/bWFpbgo/Cg) |
| ✅ | [**github.com/milinddhamu/coc-nextjs**](https://github.com/milinddhamu/coc-nextjs/tree/main/) | 1m 20s | [Data](./data/github.com/milinddhamu/coc-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/minhlongit/argon-dashboard-vue3**](https://github.com/minhlongit/argon-dashboard-vue3/tree/master/) | 9s | [Data](./data/github.com/minhlongit/argon-dashboard-vue3/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mintlify/components**](https://github.com/mintlify/components/tree/main/) | 11s | [Data](./data/github.com/mintlify/components/bWFpbgo/Cg) |
| ✅ | [**github.com/miten5/larawind**](https://github.com/miten5/larawind/tree/master/) | 34s | [Data](./data/github.com/miten5/larawind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/miurla/babyagi-ui**](https://github.com/miurla/babyagi-ui/tree/main/) | 10s | [Data](./data/github.com/miurla/babyagi-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/mixandgo/hotwire_react**](https://github.com/mixandgo/hotwire_react/tree/main/) | 5s | [Data](./data/github.com/mixandgo/hotwire_react/bWFpbgo/Cg) |
| ✅ | [**github.com/mkare/react-movies-omdb**](https://github.com/mkare/react-movies-omdb/tree/master/) | 28s | [Data](./data/github.com/mkare/react-movies-omdb/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mkocansey/bladewind**](https://github.com/mkocansey/bladewind/tree/main/) | 7s | [Data](./data/github.com/mkocansey/bladewind/bWFpbgo/Cg) |
| ❌ | [**github.com/mkosir/frontend-monorepo-boilerplate**](https://github.com/mkosir/frontend-monorepo-boilerplate/tree/main/apps%2Fboilerplate-app) (`apps/boilerplate-app`) | *n/a* | [Data](./data/github.com/mkosir/frontend-monorepo-boilerplate/bWFpbgo/YXBwcy9ib2lsZXJwbGF0ZS1hcHAK) |
| ❌ | [**github.com/mkosir/frontend-monorepo-boilerplate**](https://github.com/mkosir/frontend-monorepo-boilerplate/tree/main/packages%2Fconfig-tailwind) (`packages/config-tailwind`) | *n/a* | [Data](./data/github.com/mkosir/frontend-monorepo-boilerplate/bWFpbgo/cGFja2FnZXMvY29uZmlnLXRhaWx3aW5kCg) |
| ❌ | [**github.com/mkosir/frontend-monorepo-boilerplate**](https://github.com/mkosir/frontend-monorepo-boilerplate/tree/main/packages%2Fui-tailwind) (`packages/ui-tailwind`) | *n/a* | [Data](./data/github.com/mkosir/frontend-monorepo-boilerplate/bWFpbgo/cGFja2FnZXMvdWktdGFpbHdpbmQK) |
| ✅ | [**github.com/mlcommons/dynabench**](https://github.com/mlcommons/dynabench/tree/main/frontends%2Fdocs) (`frontends/docs`) | 10s | [Data](./data/github.com/mlcommons/dynabench/bWFpbgo/ZnJvbnRlbmRzL2RvY3MK) |
| ✅ | [**github.com/mlcommons/dynabench**](https://github.com/mlcommons/dynabench/tree/main/frontends%2Fweb) (`frontends/web`) | 10s | [Data](./data/github.com/mlcommons/dynabench/bWFpbgo/ZnJvbnRlbmRzL3dlYgo) |
| ✅ | [**github.com/mlipilin/transfermarkt-parser**](https://github.com/mlipilin/transfermarkt-parser/tree/main/packages%2Fdemo-client) (`packages/demo-client`) | 8s | [Data](./data/github.com/mlipilin/transfermarkt-parser/bWFpbgo/cGFja2FnZXMvZGVtby1jbGllbnQK) |
| ✅ | [**github.com/mlynch/nextjs-tailwind-ionic-capacitor-starter**](https://github.com/mlynch/nextjs-tailwind-ionic-capacitor-starter/tree/main/) | 13s | [Data](./data/github.com/mlynch/nextjs-tailwind-ionic-capacitor-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/moayaan1911/powered**](https://github.com/moayaan1911/powered/tree/main/) | 9s | [Data](./data/github.com/moayaan1911/powered/bWFpbgo/Cg) |
| ✅ | [**github.com/mobiclub/social-coding**](https://github.com/mobiclub/social-coding/tree/main/web%2Fsrc) (`web/src`) | 9s | [Data](./data/github.com/mobiclub/social-coding/bWFpbgo/d2ViL3NyYwo) |
| ✅ | [**github.com/moduslabs/remix-video-channel**](https://github.com/moduslabs/remix-video-channel/tree/main/) | 6s | [Data](./data/github.com/moduslabs/remix-video-channel/bWFpbgo/Cg) |
| ✅ | [**github.com/mohamedebrahim96/mohamedebrahim96.portfolio**](https://github.com/mohamedebrahim96/mohamedebrahim96.portfolio/tree/master/) | 9s | [Data](./data/github.com/mohamedebrahim96/mohamedebrahim96.portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mohammad-taheri1/nextjs-tailwind-sandbox**](https://github.com/mohammad-taheri1/nextjs-tailwind-sandbox/tree/main/) | 6s | [Data](./data/github.com/mohammad-taheri1/nextjs-tailwind-sandbox/bWFpbgo/Cg) |
| ✅ | [**github.com/mohammadsiyou/prettier-plugin-twin.macro**](https://github.com/mohammadsiyou/prettier-plugin-twin.macro/tree/main/) | 9s | [Data](./data/github.com/mohammadsiyou/prettier-plugin-twin.macro/bWFpbgo/Cg) |
| ✅ | [**github.com/mohanavel15/Meet**](https://github.com/mohanavel15/Meet/tree/master/web) (`web`) | 6s | [Data](./data/github.com/mohanavel15/Meet/bWFzdGVyCg/d2ViCg) |
| ✅ | [**github.com/mohitmimani/Discord-Bot-Website**](https://github.com/mohitmimani/Discord-Bot-Website/tree/main/) | 6s | [Data](./data/github.com/mohitmimani/Discord-Bot-Website/bWFpbgo/Cg) |
| ✅ | [**github.com/moinulmoin/vite-react-tailwind-starter**](https://github.com/moinulmoin/vite-react-tailwind-starter/tree/master/) | 7s | [Data](./data/github.com/moinulmoin/vite-react-tailwind-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mojtaba1180/telegram-web-app-shop**](https://github.com/mojtaba1180/telegram-web-app-shop/tree/main/) | 9s | [Data](./data/github.com/mojtaba1180/telegram-web-app-shop/bWFpbgo/Cg) |
| ✅ | [**github.com/mongodb-developer/remix**](https://github.com/mongodb-developer/remix/tree/main/) | 13s | [Data](./data/github.com/mongodb-developer/remix/bWFpbgo/Cg) |
| ✅ | [**github.com/mongodbthailand/mongodbthailand.github.io**](https://github.com/mongodbthailand/mongodbthailand.github.io/tree/main/) | 44s | [Data](./data/github.com/mongodbthailand/mongodbthailand.github.io/bWFpbgo/Cg) |
| ❌ | [**github.com/monicahq/monica**](https://github.com/monicahq/monica/tree/main/) | *n/a* | [Data](./data/github.com/monicahq/monica/bWFpbgo/Cg) |
| ✅ | [**github.com/monodyle/bento**](https://github.com/monodyle/bento/tree/main/) | 6s | [Data](./data/github.com/monodyle/bento/bWFpbgo/Cg) |
| ✅ | [**github.com/montalvomiguelo/hydrogen-theme**](https://github.com/montalvomiguelo/hydrogen-theme/tree/main/) | 7s | [Data](./data/github.com/montalvomiguelo/hydrogen-theme/bWFpbgo/Cg) |
| ✅ | [**github.com/moonrailgun/codeck**](https://github.com/moonrailgun/codeck/tree/master/platform) (`platform`) | 1m 42s | [Data](./data/github.com/moonrailgun/codeck/bWFzdGVyCg/cGxhdGZvcm0K) |
| ✅ | [**github.com/moonshine-software/demo-blog**](https://github.com/moonshine-software/demo-blog/tree/master/) | 9s | [Data](./data/github.com/moonshine-software/demo-blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/moonshine-software/doc**](https://github.com/moonshine-software/doc/tree/2.0/) | 11s | [Data](./data/github.com/moonshine-software/doc/Mi4wCg/Cg) |
| ✅ | [**github.com/moonshine-software/moonshine**](https://github.com/moonshine-software/moonshine/tree/2.x/) | 8s | [Data](./data/github.com/moonshine-software/moonshine/Mi54Cg/Cg) |
| ✅ | [**github.com/mospolytech-finapp/web-archive**](https://github.com/mospolytech-finapp/web-archive/tree/master/) | 6s | [Data](./data/github.com/mospolytech-finapp/web-archive/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mostafizurhimself/admintoolkit-html**](https://github.com/mostafizurhimself/admintoolkit-html/tree/main/) | 12s | [Data](./data/github.com/mostafizurhimself/admintoolkit-html/bWFpbgo/Cg) |
| ❌ | [**github.com/mostafizurhimself/ecommerce**](https://github.com/mostafizurhimself/ecommerce/tree/main/frontend) (`frontend`) | *n/a* | [Data](./data/github.com/mostafizurhimself/ecommerce/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/mostlyserious/ms-craft**](https://github.com/mostlyserious/ms-craft/tree/master/) | 48s | [Data](./data/github.com/mostlyserious/ms-craft/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/motleylabs/nightmarket-oss**](https://github.com/motleylabs/nightmarket-oss/tree/main/) | 10s | [Data](./data/github.com/motleylabs/nightmarket-oss/bWFpbgo/Cg) |
| ✅ | [**github.com/mouadziani/mouadziani.com**](https://github.com/mouadziani/mouadziani.com/tree/master/) | 16s | [Data](./data/github.com/mouadziani/mouadziani.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/movie-web/movie-web**](https://github.com/movie-web/movie-web/tree/dev/) | 12s | [Data](./data/github.com/movie-web/movie-web/ZGV2Cg/Cg) |
| ✅ | [**github.com/mozzius/tincypics**](https://github.com/mozzius/tincypics/tree/main/) | 6s | [Data](./data/github.com/mozzius/tincypics/bWFpbgo/Cg) |
| ✅ | [**github.com/mrLuisFer/linktry**](https://github.com/mrLuisFer/linktry/tree/main/) | 10s | [Data](./data/github.com/mrLuisFer/linktry/bWFpbgo/Cg) |
| ✅ | [**github.com/mrhelloboy/seven**](https://github.com/mrhelloboy/seven/tree/main/) | 7s | [Data](./data/github.com/mrhelloboy/seven/bWFpbgo/Cg) |
| ✅ | [**github.com/mstdn/Birb**](https://github.com/mstdn/Birb/tree/main/) | 8s | [Data](./data/github.com/mstdn/Birb/bWFpbgo/Cg) |
| ✅ | [**github.com/mubaidr/vite-chrome-extension**](https://github.com/mubaidr/vite-chrome-extension/tree/master/) | 10s | [Data](./data/github.com/mubaidr/vite-chrome-extension/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mubaidr/vite-vue3-chrome-extension-v3**](https://github.com/mubaidr/vite-vue3-chrome-extension-v3/tree/master/) | 8s | [Data](./data/github.com/mubaidr/vite-vue3-chrome-extension-v3/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/mudzikalfahri/wefootwear-store**](https://github.com/mudzikalfahri/wefootwear-store/tree/main/) | 10s | [Data](./data/github.com/mudzikalfahri/wefootwear-store/bWFpbgo/Cg) |
| ✅ | [**github.com/muety/wakapi**](https://github.com/muety/wakapi/tree/master/) | 6s | [Data](./data/github.com/muety/wakapi/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/muhwyndhamhp/marknotes**](https://github.com/muhwyndhamhp/marknotes/tree/main/) | 7s | [Data](./data/github.com/muhwyndhamhp/marknotes/bWFpbgo/Cg) |
| ❌ | [**github.com/mui/base-ui**](https://github.com/mui/base-ui/tree/master/docs) (`docs`) | *n/a* | [Data](./data/github.com/mui/base-ui/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/mui/material-ui**](https://github.com/mui/material-ui/tree/master/docs) (`docs`) | 1m 18s | [Data](./data/github.com/mui/material-ui/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/mui/material-ui-docs**](https://github.com/mui/material-ui-docs/tree/latest/docs) (`docs`) | 1m 21s | [Data](./data/github.com/mui/material-ui-docs/bGF0ZXN0Cg/ZG9jcwo) |
| ✅ | [**github.com/mukhammadxuja/lazydev**](https://github.com/mukhammadxuja/lazydev/tree/main/) | 14s | [Data](./data/github.com/mukhammadxuja/lazydev/bWFpbgo/Cg) |
| ✅ | [**github.com/mutasim77/Algorithms-Universe**](https://github.com/mutasim77/Algorithms-Universe/tree/main/) | 8s | [Data](./data/github.com/mutasim77/Algorithms-Universe/bWFpbgo/Cg) |
| ✅ | [**github.com/muttoni/contract-browser**](https://github.com/muttoni/contract-browser/tree/main/) | 8s | [Data](./data/github.com/muttoni/contract-browser/bWFpbgo/Cg) |
| ✅ | [**github.com/mvdicarlo/postybirb-plus**](https://github.com/mvdicarlo/postybirb-plus/tree/master/ui) (`ui`) | 11s | [Data](./data/github.com/mvdicarlo/postybirb-plus/bWFzdGVyCg/dWkK) |
| ✅ | [**github.com/mvllow/next-pwa-template**](https://github.com/mvllow/next-pwa-template/tree/main/) | 7s | [Data](./data/github.com/mvllow/next-pwa-template/bWFpbgo/Cg) |
| ✅ | [**github.com/n1crack/vuefinder**](https://github.com/n1crack/vuefinder/tree/master/) | 7s | [Data](./data/github.com/n1crack/vuefinder/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nabi-chan/simple-note**](https://github.com/nabi-chan/simple-note/tree/main/) | 7s | [Data](./data/github.com/nabi-chan/simple-note/bWFpbgo/Cg) |
| ❌ | [**github.com/nachoaldamav/ultra**](https://github.com/nachoaldamav/ultra/tree/main/apps%2Flanding) (`apps/landing`) | *n/a* | [Data](./data/github.com/nachoaldamav/ultra/bWFpbgo/YXBwcy9sYW5kaW5nCg) |
| ✅ | [**github.com/nandoamori/ignite-lab-ts**](https://github.com/nandoamori/ignite-lab-ts/tree/main/) | 6s | [Data](./data/github.com/nandoamori/ignite-lab-ts/bWFpbgo/Cg) |
| ✅ | [**github.com/narze/deploydeemai.today**](https://github.com/narze/deploydeemai.today/tree/main/) | 7s | [Data](./data/github.com/narze/deploydeemai.today/bWFpbgo/Cg) |
| ✅ | [**github.com/narze/hacktober**](https://github.com/narze/hacktober/tree/main/) | 11s | [Data](./data/github.com/narze/hacktober/bWFpbgo/Cg) |
| ✅ | [**github.com/narze/resume**](https://github.com/narze/resume/tree/main/) | 7s | [Data](./data/github.com/narze/resume/bWFpbgo/Cg) |
| ✅ | [**github.com/narze/thwordle**](https://github.com/narze/thwordle/tree/main/) | 9s | [Data](./data/github.com/narze/thwordle/bWFpbgo/Cg) |
| ✅ | [**github.com/nat/openplayground**](https://github.com/nat/openplayground/tree/main/app) (`app`) | 8s | [Data](./data/github.com/nat/openplayground/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/nathanhleung/evmtx**](https://github.com/nathanhleung/evmtx/tree/main/frontend) (`frontend`) | 20s | [Data](./data/github.com/nathanhleung/evmtx/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/naufaldi/next-landing-vpn**](https://github.com/naufaldi/next-landing-vpn/tree/main/) | 9s | [Data](./data/github.com/naufaldi/next-landing-vpn/bWFpbgo/Cg) |
| ✅ | [**github.com/naumanch969/achievo**](https://github.com/naumanch969/achievo/tree/main/) | 7s | [Data](./data/github.com/naumanch969/achievo/bWFpbgo/Cg) |
| ✅ | [**github.com/nchdatta/personal-portfolio**](https://github.com/nchdatta/personal-portfolio/tree/main/) | 6s | [Data](./data/github.com/nchdatta/personal-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/ndimatteo/HULL**](https://github.com/ndimatteo/HULL/tree/main/) | 12s | [Data](./data/github.com/ndimatteo/HULL/bWFpbgo/Cg) |
| ✅ | [**github.com/ndom91/briefkasten**](https://github.com/ndom91/briefkasten/tree/main/) | 10s | [Data](./data/github.com/ndom91/briefkasten/bWFpbgo/Cg) |
| ✅ | [**github.com/neat-run/wrapped**](https://github.com/neat-run/wrapped/tree/main/) | 9s | [Data](./data/github.com/neat-run/wrapped/bWFpbgo/Cg) |
| ❌ | [**github.com/needim/radix-ui-themes-with-tailwind**](https://github.com/needim/radix-ui-themes-with-tailwind/tree/main/docs-dev) (`docs-dev`) | *n/a* | [Data](./data/github.com/needim/radix-ui-themes-with-tailwind/bWFpbgo/ZG9jcy1kZXYK) |
| ❌ | [**github.com/neila/nextjs-template**](https://github.com/neila/nextjs-template/tree/main/) | *n/a* | [Data](./data/github.com/neila/nextjs-template/bWFpbgo/Cg) |
| ✅ | [**github.com/neo-hack/webext-template**](https://github.com/neo-hack/webext-template/tree/v3/) | 35s | [Data](./data/github.com/neo-hack/webext-template/djMK/Cg) |
| ✅ | [**github.com/neo4j/NaLLM**](https://github.com/neo4j/NaLLM/tree/main/ui) (`ui`) | 9s | [Data](./data/github.com/neo4j/NaLLM/bWFpbgo/dWkK) |
| ❌ | [**github.com/neplextech/edge-ui**](https://github.com/neplextech/edge-ui/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/neplextech/edge-ui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/netlify-templates/kpop-stack**](https://github.com/netlify-templates/kpop-stack/tree/main/) | 7s | [Data](./data/github.com/netlify-templates/kpop-stack/bWFpbgo/Cg) |
| ✅ | [**github.com/nevinpuri/Atem**](https://github.com/nevinpuri/Atem/tree/master/) | 9s | [Data](./data/github.com/nevinpuri/Atem/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nextui-org/nextui**](https://github.com/nextui-org/nextui/tree/main/apps%2Fdocs) (`apps/docs`) | 1m 11s | [Data](./data/github.com/nextui-org/nextui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/nexxeln/best-sbls**](https://github.com/nexxeln/best-sbls/tree/main/) | 7s | [Data](./data/github.com/nexxeln/best-sbls/bWFpbgo/Cg) |
| ✅ | [**github.com/ngneat/svg-icon**](https://github.com/ngneat/svg-icon/tree/master/) | 15s | [Data](./data/github.com/ngneat/svg-icon/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nhaouari/obsidian-textgenerator-plugin**](https://github.com/nhaouari/obsidian-textgenerator-plugin/tree/master/) | 12s | [Data](./data/github.com/nhaouari/obsidian-textgenerator-plugin/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nhattruongniit/react-spotify**](https://github.com/nhattruongniit/react-spotify/tree/master/) | 13s | [Data](./data/github.com/nhattruongniit/react-spotify/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nhost/nhost**](https://github.com/nhost/nhost/tree/main/dashboard) (`dashboard`) | 1m 22s | [Data](./data/github.com/nhost/nhost/bWFpbgo/ZGFzaGJvYXJkCg) |
| ✅ | [**github.com/nickfrosty/compressed.app**](https://github.com/nickfrosty/compressed.app/tree/main/) | 1m 2s | [Data](./data/github.com/nickfrosty/compressed.app/bWFpbgo/Cg) |
| ✅ | [**github.com/nikohoffren/hunajaholisti-website**](https://github.com/nikohoffren/hunajaholisti-website/tree/main/) | 11s | [Data](./data/github.com/nikohoffren/hunajaholisti-website/bWFpbgo/Cg) |
| ✅ | [**github.com/nikolalsvk/blog**](https://github.com/nikolalsvk/blog/tree/master/) | 18s | [Data](./data/github.com/nikolalsvk/blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nimiq/crypto-map**](https://github.com/nimiq/crypto-map/tree/main/apps%2Fweb) (`apps/web`) | 14s | [Data](./data/github.com/nimiq/crypto-map/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/nineaiyu/xadmin-client**](https://github.com/nineaiyu/xadmin-client/tree/main/) | 6s | [Data](./data/github.com/nineaiyu/xadmin-client/bWFpbgo/Cg) |
| ✅ | [**github.com/nixgram/nixng**](https://github.com/nixgram/nixng/tree/version-1/) | 6s | [Data](./data/github.com/nixgram/nixng/dmVyc2lvbi0xCg/Cg) |
| ✅ | [**github.com/nnnnicholas/ens2hex**](https://github.com/nnnnicholas/ens2hex/tree/master/) | 8s | [Data](./data/github.com/nnnnicholas/ens2hex/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/noahflk/railtrack**](https://github.com/noahflk/railtrack/tree/main/) | 8s | [Data](./data/github.com/noahflk/railtrack/bWFpbgo/Cg) |
| ✅ | [**github.com/noahgsolomon/Codefoli**](https://github.com/noahgsolomon/Codefoli/tree/master/) | 14s | [Data](./data/github.com/noahgsolomon/Codefoli/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/noahgsolomon/Codefoli**](https://github.com/noahgsolomon/Codefoli/tree/master/themes%2Fpaper) (`themes/paper`) | 12s | [Data](./data/github.com/noahgsolomon/Codefoli/bWFzdGVyCg/dGhlbWVzL3BhcGVyCg) |
| ✅ | [**github.com/noams24/Kef-Code**](https://github.com/noams24/Kef-Code/tree/main/) | 27s | [Data](./data/github.com/noams24/Kef-Code/bWFpbgo/Cg) |
| ✅ | [**github.com/nodejs/nodejs.org**](https://github.com/nodejs/nodejs.org/tree/main/) | 13s | [Data](./data/github.com/nodejs/nodejs.org/bWFpbgo/Cg) |
| ✅ | [**github.com/nodetec/blogstack**](https://github.com/nodetec/blogstack/tree/master/) | 9s | [Data](./data/github.com/nodetec/blogstack/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/nombersDev/casemove**](https://github.com/nombersDev/casemove/tree/main/) | *n/a* | [Data](./data/github.com/nombersDev/casemove/bWFpbgo/Cg) |
| ✅ | [**github.com/nomic-ai/gpt4all.io**](https://github.com/nomic-ai/gpt4all.io/tree/main/frontend%2Fgpt4all.io) (`frontend/gpt4all.io`) | 7s | [Data](./data/github.com/nomic-ai/gpt4all.io/bWFpbgo/ZnJvbnRlbmQvZ3B0NGFsbC5pbwo) |
| ✅ | [**github.com/noobnooc/noobnooc**](https://github.com/noobnooc/noobnooc/tree/main/) | 11s | [Data](./data/github.com/noobnooc/noobnooc/bWFpbgo/Cg) |
| ✅ | [**github.com/noodle-run/noodle**](https://github.com/noodle-run/noodle/tree/main/) | 23s | [Data](./data/github.com/noodle-run/noodle/bWFpbgo/Cg) |
| ❌ | [**github.com/nostr-dev-kit/ndk**](https://github.com/nostr-dev-kit/ndk/tree/master/ndk-svelte-components) (`ndk-svelte-components`) | *n/a* | [Data](./data/github.com/nostr-dev-kit/ndk/bWFzdGVyCg/bmRrLXN2ZWx0ZS1jb21wb25lbnRzCg) |
| ✅ | [**github.com/nostr-dev-kit/ndk**](https://github.com/nostr-dev-kit/ndk/tree/master/packages%2Ftailwind-config) (`packages/tailwind-config`) | 1m 3s | [Data](./data/github.com/nostr-dev-kit/ndk/bWFzdGVyCg/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/nostric-devs/nostric**](https://github.com/nostric-devs/nostric/tree/master/) | 33s | [Data](./data/github.com/nostric-devs/nostric/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/notea-org/notea**](https://github.com/notea-org/notea/tree/main/) | 12s | [Data](./data/github.com/notea-org/notea/bWFpbgo/Cg) |
| ✅ | [**github.com/notiz-dev/nestjs-mailer**](https://github.com/notiz-dev/nestjs-mailer/tree/main/mail-templates) (`mail-templates`) | 38s | [Data](./data/github.com/notiz-dev/nestjs-mailer/bWFpbgo/bWFpbC10ZW1wbGF0ZXMK) |
| ✅ | [**github.com/notiz-dev/ngx-tailwind**](https://github.com/notiz-dev/ngx-tailwind/tree/main/angular-workspace) (`angular-workspace`) | 6s | [Data](./data/github.com/notiz-dev/ngx-tailwind/bWFpbgo/YW5ndWxhci13b3Jrc3BhY2UK) |
| ✅ | [**github.com/notrab/chatbase**](https://github.com/notrab/chatbase/tree/main/) | 5s | [Data](./data/github.com/notrab/chatbase/bWFpbgo/Cg) |
| ✅ | [**github.com/nown1ne/ezmail**](https://github.com/nown1ne/ezmail/tree/master/) | 6s | [Data](./data/github.com/nown1ne/ezmail/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nuIIpointerexception/www.seekvisualartist.com**](https://github.com/nuIIpointerexception/www.seekvisualartist.com/tree/main/) | 7s | [Data](./data/github.com/nuIIpointerexception/www.seekvisualartist.com/bWFpbgo/Cg) |
| ✅ | [**github.com/nucleuscloud/neosync**](https://github.com/nucleuscloud/neosync/tree/main/docs) (`docs`) | 9s | [Data](./data/github.com/nucleuscloud/neosync/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/nucleuscloud/neosync**](https://github.com/nucleuscloud/neosync/tree/main/marketing) (`marketing`) | 9s | [Data](./data/github.com/nucleuscloud/neosync/bWFpbgo/bWFya2V0aW5nCg) |
| ✅ | [**github.com/nukeop/based-launcher**](https://github.com/nukeop/based-launcher/tree/master/) | 8s | [Data](./data/github.com/nukeop/based-launcher/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/nurRiyad/nuxt-blog**](https://github.com/nurRiyad/nuxt-blog/tree/main/) | 22s | [Data](./data/github.com/nurRiyad/nuxt-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/nurRiyad/nuxt-linktree**](https://github.com/nurRiyad/nuxt-linktree/tree/main/) | 25s | [Data](./data/github.com/nurRiyad/nuxt-linktree/bWFpbgo/Cg) |
| ✅ | [**github.com/nus3/next-boilerplate**](https://github.com/nus3/next-boilerplate/tree/main/) | 8s | [Data](./data/github.com/nus3/next-boilerplate/bWFpbgo/Cg) |
| ✅ | [**github.com/nusserstudios/tailbliss**](https://github.com/nusserstudios/tailbliss/tree/main/) | 7s | [Data](./data/github.com/nusserstudios/tailbliss/bWFpbgo/Cg) |
| ❌ | [**github.com/nuxt-modules/tailwindcss**](https://github.com/nuxt-modules/tailwindcss/tree/main/docs) (`docs`) | *n/a* | [Data](./data/github.com/nuxt-modules/tailwindcss/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/nuxt-modules/tailwindcss**](https://github.com/nuxt-modules/tailwindcss/tree/main/nuxt2-playground) (`nuxt2-playground`) | 1m 29s | [Data](./data/github.com/nuxt-modules/tailwindcss/bWFpbgo/bnV4dDItcGxheWdyb3VuZAo) |
| ❌ | [**github.com/nuxt-modules/tailwindcss**](https://github.com/nuxt-modules/tailwindcss/tree/main/playground) (`playground`) | *n/a* | [Data](./data/github.com/nuxt-modules/tailwindcss/bWFpbgo/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/nuxtlabs/vue-telescope-extensions**](https://github.com/nuxtlabs/vue-telescope-extensions/tree/main/) | 9s | [Data](./data/github.com/nuxtlabs/vue-telescope-extensions/bWFpbgo/Cg) |
| ✅ | [**github.com/nvh95/jest-preview**](https://github.com/nvh95/jest-preview/tree/main/) | 6s | [Data](./data/github.com/nvh95/jest-preview/bWFpbgo/Cg) |
| ✅ | [**github.com/nyancodeid/quotes**](https://github.com/nyancodeid/quotes/tree/main/) | 6s | [Data](./data/github.com/nyancodeid/quotes/bWFpbgo/Cg) |
| ✅ | [**github.com/obytes/react-native-template-obytes**](https://github.com/obytes/react-native-template-obytes/tree/master/) | 9s | [Data](./data/github.com/obytes/react-native-template-obytes/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/oceceli/last-automation**](https://github.com/oceceli/last-automation/tree/master/) | 10s | [Data](./data/github.com/oceceli/last-automation/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/octokatherine/readme.so**](https://github.com/octokatherine/readme.so/tree/main/) | 8s | [Data](./data/github.com/octokatherine/readme.so/bWFpbgo/Cg) |
| ✅ | [**github.com/octolane-org/cap.octolane.com**](https://github.com/octolane-org/cap.octolane.com/tree/dev/apps%2Fweb) (`apps/web`) | 28s | [Data](./data/github.com/octolane-org/cap.octolane.com/ZGV2Cg/YXBwcy93ZWIK) |
| ✅ | [**github.com/ohad24/encyclo-flower**](https://github.com/ohad24/encyclo-flower/tree/main/src%2Fweb) (`src/web`) | 7s | [Data](./data/github.com/ohad24/encyclo-flower/bWFpbgo/c3JjL3dlYgo) |
| ✅ | [**github.com/ohdearapp/ohdear-pulse**](https://github.com/ohdearapp/ohdear-pulse/tree/main/) | 10s | [Data](./data/github.com/ohdearapp/ohdear-pulse/bWFpbgo/Cg) |
| ✅ | [**github.com/okNeeraj/netflix-gpt**](https://github.com/okNeeraj/netflix-gpt/tree/master/) | 5s | [Data](./data/github.com/okNeeraj/netflix-gpt/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/okfn/website**](https://github.com/okfn/website/tree/develop/) | 10s | [Data](./data/github.com/okfn/website/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/oktay/movies**](https://github.com/oktay/movies/tree/main/) | 5s | [Data](./data/github.com/oktay/movies/bWFpbgo/Cg) |
| ✅ | [**github.com/oldweipro/gin-admin-naive-ui**](https://github.com/oldweipro/gin-admin-naive-ui/tree/main/) | 10s | [Data](./data/github.com/oldweipro/gin-admin-naive-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/oliverloops/oliverloops.com**](https://github.com/oliverloops/oliverloops.com/tree/main/) | 13s | [Data](./data/github.com/oliverloops/oliverloops.com/bWFpbgo/Cg) |
| ✅ | [**github.com/oms-fyi/reviews**](https://github.com/oms-fyi/reviews/tree/main/) | 8s | [Data](./data/github.com/oms-fyi/reviews/bWFpbgo/Cg) |
| ✅ | [**github.com/one-aalam/astro-ink**](https://github.com/one-aalam/astro-ink/tree/main/) | 29s | [Data](./data/github.com/one-aalam/astro-ink/bWFpbgo/Cg) |
| ❌ | [**github.com/oneezy/monorepo**](https://github.com/oneezy/monorepo/tree/main/apps%2F%2Bapp) (`apps/+app`) | *n/a* | [Data](./data/github.com/oneezy/monorepo/bWFpbgo/YXBwcy8rYXBwCg) |
| ❌ | [**github.com/oneezy/monorepo**](https://github.com/oneezy/monorepo/tree/main/apps%2F%2Bstories) (`apps/+stories`) | *n/a* | [Data](./data/github.com/oneezy/monorepo/bWFpbgo/YXBwcy8rc3Rvcmllcwo) |
| ❌ | [**github.com/oneezy/monorepo**](https://github.com/oneezy/monorepo/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/oneezy/monorepo/bWFpbgo/YXBwcy9kb2NzCg) |
| ❌ | [**github.com/oneezy/monorepo**](https://github.com/oneezy/monorepo/tree/main/apps%2Fsite) (`apps/site`) | *n/a* | [Data](./data/github.com/oneezy/monorepo/bWFpbgo/YXBwcy9zaXRlCg) |
| ✅ | [**github.com/onesine/react-tailwindcss-select**](https://github.com/onesine/react-tailwindcss-select/tree/master/) | 9s | [Data](./data/github.com/onesine/react-tailwindcss-select/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/onwardplatforms/azure-periodic-table-app**](https://github.com/onwardplatforms/azure-periodic-table-app/tree/main/) | 9s | [Data](./data/github.com/onwardplatforms/azure-periodic-table-app/bWFpbgo/Cg) |
| ✅ | [**github.com/onwidget/astrowind**](https://github.com/onwidget/astrowind/tree/main/) | 28s | [Data](./data/github.com/onwidget/astrowind/bWFpbgo/Cg) |
| ✅ | [**github.com/onwidget/qwind**](https://github.com/onwidget/qwind/tree/main/) | 6s | [Data](./data/github.com/onwidget/qwind/bWFpbgo/Cg) |
| ✅ | [**github.com/onwidget/tailnext**](https://github.com/onwidget/tailnext/tree/main/) | 6s | [Data](./data/github.com/onwidget/tailnext/bWFpbgo/Cg) |
| ❌ | [**github.com/open-decision/open-decision**](https://github.com/open-decision/open-decision/tree/main/packages%2Fdesign-system) (`packages/design-system`) | *n/a* | [Data](./data/github.com/open-decision/open-decision/bWFpbgo/cGFja2FnZXMvZGVzaWduLXN5c3RlbQo) |
| ✅ | [**github.com/open-source-at-illinois/website-reboot**](https://github.com/open-source-at-illinois/website-reboot/tree/master/frontend) (`frontend`) | 6s | [Data](./data/github.com/open-source-at-illinois/website-reboot/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/openMF/web-app**](https://github.com/openMF/web-app/tree/master/) | 7s | [Data](./data/github.com/openMF/web-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/opencodeiiita/GrepIt-Frontend**](https://github.com/opencodeiiita/GrepIt-Frontend/tree/main/) | 10s | [Data](./data/github.com/opencodeiiita/GrepIt-Frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/opencodeiiita/Hitch-Frontend**](https://github.com/opencodeiiita/Hitch-Frontend/tree/main/) | 10s | [Data](./data/github.com/opencodeiiita/Hitch-Frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/opencodeiiita/Scoop-Frontend**](https://github.com/opencodeiiita/Scoop-Frontend/tree/main/) | 9s | [Data](./data/github.com/opencodeiiita/Scoop-Frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/opengoofy/hippo4j**](https://github.com/opengoofy/hippo4j/tree/develop/docs) (`docs`) | 10s | [Data](./data/github.com/opengoofy/hippo4j/ZGV2ZWxvcAo/ZG9jcwo) |
| ✅ | [**github.com/openneno/neno**](https://github.com/openneno/neno/tree/master/) | 7s | [Data](./data/github.com/openneno/neno/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/opensourcecheemsburgers/ubiquity**](https://github.com/opensourcecheemsburgers/ubiquity/tree/master/frontend) (`frontend`) | 7s | [Data](./data/github.com/opensourcecheemsburgers/ubiquity/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/opentiny/tiny-vue**](https://github.com/opentiny/tiny-vue/tree/dev/packages%2Ftheme-saas) (`packages/theme-saas`) | 2m 25s | [Data](./data/github.com/opentiny/tiny-vue/ZGV2Cg/cGFja2FnZXMvdGhlbWUtc2Fhcwo) |
| ✅ | [**github.com/opentofu/opentofu.org**](https://github.com/opentofu/opentofu.org/tree/main/) | 7s | [Data](./data/github.com/opentofu/opentofu.org/bWFpbgo/Cg) |
| ✅ | [**github.com/optimizasean/TailwindAccessibilityConfig**](https://github.com/optimizasean/TailwindAccessibilityConfig/tree/master/) | 7s | [Data](./data/github.com/optimizasean/TailwindAccessibilityConfig/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/orbit-love/orbit-model**](https://github.com/orbit-love/orbit-model/tree/main/) | 13s | [Data](./data/github.com/orbit-love/orbit-model/bWFpbgo/Cg) |
| ✅ | [**github.com/orz14/nyatet-app**](https://github.com/orz14/nyatet-app/tree/main/) | 9s | [Data](./data/github.com/orz14/nyatet-app/bWFpbgo/Cg) |
| ✅ | [**github.com/osalinasv/uuid-webapp**](https://github.com/osalinasv/uuid-webapp/tree/main/) | 26s | [Data](./data/github.com/osalinasv/uuid-webapp/bWFpbgo/Cg) |
| ✅ | [**github.com/oslabs-beta/RemixDJ**](https://github.com/oslabs-beta/RemixDJ/tree/main/main-page) (`main-page`) | 7s | [Data](./data/github.com/oslabs-beta/RemixDJ/bWFpbgo/bWFpbi1wYWdlCg) |
| ✅ | [**github.com/osmkerala/osmkerala.github.io**](https://github.com/osmkerala/osmkerala.github.io/tree/main/) | 21s | [Data](./data/github.com/osmkerala/osmkerala.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/osmosis-labs/osmosis-frontend**](https://github.com/osmosis-labs/osmosis-frontend/tree/stage/packages%2Fweb) (`packages/web`) | 9s | [Data](./data/github.com/osmosis-labs/osmosis-frontend/c3RhZ2UK/cGFja2FnZXMvd2ViCg) |
| ❌ | [**github.com/osscameroon/jobsika**](https://github.com/osscameroon/jobsika/tree/main/frontend) (`frontend`) | *n/a* | [Data](./data/github.com/osscameroon/jobsika/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/otmaneechchafyky/Animore**](https://github.com/otmaneechchafyky/Animore/tree/main/) | 7s | [Data](./data/github.com/otmaneechchafyky/Animore/bWFpbgo/Cg) |
| ✅ | [**github.com/oughtinc/ice**](https://github.com/oughtinc/ice/tree/main/ui) (`ui`) | 5m 40s | [Data](./data/github.com/oughtinc/ice/bWFpbgo/dWkK) |
| ✅ | [**github.com/outl1ne/nova-detached-filters**](https://github.com/outl1ne/nova-detached-filters/tree/main/) | 6s | [Data](./data/github.com/outl1ne/nova-detached-filters/bWFpbgo/Cg) |
| ✅ | [**github.com/outl1ne/nova-page-manager**](https://github.com/outl1ne/nova-page-manager/tree/main/) | 5s | [Data](./data/github.com/outl1ne/nova-page-manager/bWFpbgo/Cg) |
| ✅ | [**github.com/outl1ne/nova-simple-repeatable**](https://github.com/outl1ne/nova-simple-repeatable/tree/main/) | 7s | [Data](./data/github.com/outl1ne/nova-simple-repeatable/bWFpbgo/Cg) |
| ✅ | [**github.com/overextended/ox_banking**](https://github.com/overextended/ox_banking/tree/main/web) (`web`) | 7s | [Data](./data/github.com/overextended/ox_banking/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/pablosirera/pablosirera.com**](https://github.com/pablosirera/pablosirera.com/tree/master/) | 20s | [Data](./data/github.com/pablosirera/pablosirera.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/pabueco/hue.tools**](https://github.com/pabueco/hue.tools/tree/main/) | 9s | [Data](./data/github.com/pabueco/hue.tools/bWFpbgo/Cg) |
| ❌ | [**github.com/palladians/pallad**](https://github.com/palladians/pallad/tree/main/apps%2Fextension) (`apps/extension`) | *n/a* | [Data](./data/github.com/palladians/pallad/bWFpbgo/YXBwcy9leHRlbnNpb24K) |
| ❌ | [**github.com/palladians/pallad**](https://github.com/palladians/pallad/tree/main/packages%2Ffeatures) (`packages/features`) | *n/a* | [Data](./data/github.com/palladians/pallad/bWFpbgo/cGFja2FnZXMvZmVhdHVyZXMK) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/SAAS_PROJECTS%2Ftodo-saas) (`SAAS_PROJECTS/todo-saas`) | 7s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/U0FBU19QUk9KRUNUUy90b2RvLXNhYXMK) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/step00_helloworld) (`step00_helloworld`) | 8s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/c3RlcDAwX2hlbGxvd29ybGQK) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/step11_route_handler%2Fstep03_react_hook_form) (`step11_route_handler/step03_react_hook_form`) | 7s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/c3RlcDExX3JvdXRlX2hhbmRsZXIvc3RlcDAzX3JlYWN0X2hvb2tfZm9ybQo) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/step14b_state_management%2Fhello-redux-001) (`step14b_state_management/hello-redux-001`) | 8s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/c3RlcDE0Yl9zdGF0ZV9tYW5hZ2VtZW50L2hlbGxvLXJlZHV4LTAwMQo) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/step15_auth%2Fstep00_jwt) (`step15_auth/step00_jwt`) | 10s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/c3RlcDE1X2F1dGgvc3RlcDAwX2p3dAo) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/step17_graphql%2Fstep17_1_graphql-concept) (`step17_graphql/step17_1_graphql-concept`) | 9s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/c3RlcDE3X2dyYXBocWwvc3RlcDE3XzFfZ3JhcGhxbC1jb25jZXB0Cg) |
| ✅ | [**github.com/panaverse/learn-nextjs**](https://github.com/panaverse/learn-nextjs/tree/main/step17_graphql%2Fstep17_2_next-graphql-app) (`step17_graphql/step17_2_next-graphql-app`) | 8s | [Data](./data/github.com/panaverse/learn-nextjs/bWFpbgo/c3RlcDE3X2dyYXBocWwvc3RlcDE3XzJfbmV4dC1ncmFwaHFsLWFwcAo) |
| ✅ | [**github.com/panoratech/Panora**](https://github.com/panoratech/Panora/tree/main/apps%2Fmagic-link) (`apps/magic-link`) | 1m | [Data](./data/github.com/panoratech/Panora/bWFpbgo/YXBwcy9tYWdpYy1saW5rCg) |
| ✅ | [**github.com/panoratech/Panora**](https://github.com/panoratech/Panora/tree/main/apps%2Fwebapp) (`apps/webapp`) | 45s | [Data](./data/github.com/panoratech/Panora/bWFpbgo/YXBwcy93ZWJhcHAK) |
| ✅ | [**github.com/papihubcom/papihub**](https://github.com/papihubcom/papihub/tree/main/papihub-frontend) (`papihub-frontend`) | 12s | [Data](./data/github.com/papihubcom/papihub/bWFpbgo/cGFwaWh1Yi1mcm9udGVuZAo) |
| ✅ | [**github.com/paraboul/mapchecking**](https://github.com/paraboul/mapchecking/tree/master/) | 8s | [Data](./data/github.com/paraboul/mapchecking/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/paritytech/capi-multisig-app**](https://github.com/paritytech/capi-multisig-app/tree/main/www) (`www`) | *n/a* | [Data](./data/github.com/paritytech/capi-multisig-app/bWFpbgo/d3d3Cg) |
| ✅ | [**github.com/partykit/partykit**](https://github.com/partykit/partykit/tree/main/apps%2Fblog) (`apps/blog`) | 43s | [Data](./data/github.com/partykit/partykit/bWFpbgo/YXBwcy9ibG9nCg) |
| ❌ | [**github.com/partykit/partykit**](https://github.com/partykit/partykit/tree/main/apps%2Fdocs) (`apps/docs`) | *n/a* | [Data](./data/github.com/partykit/partykit/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/partykit/partykit**](https://github.com/partykit/partykit/tree/main/apps%2Fsite) (`apps/site`) | 34s | [Data](./data/github.com/partykit/partykit/bWFpbgo/YXBwcy9zaXRlCg) |
| ✅ | [**github.com/patrykgulas/tailwind-hamburgers**](https://github.com/patrykgulas/tailwind-hamburgers/tree/master/docs) (`docs`) | 11s | [Data](./data/github.com/patrykgulas/tailwind-hamburgers/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/pavelloz/webpack-tailwindcss**](https://github.com/pavelloz/webpack-tailwindcss/tree/master/) | 18s | [Data](./data/github.com/pavelloz/webpack-tailwindcss/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/pdfslick/pdfslick**](https://github.com/pdfslick/pdfslick/tree/main/apps%2Fsolidweb) (`apps/solidweb`) | 10s | [Data](./data/github.com/pdfslick/pdfslick/bWFpbgo/YXBwcy9zb2xpZHdlYgo) |
| ✅ | [**github.com/pdfslick/pdfslick**](https://github.com/pdfslick/pdfslick/tree/main/apps%2Fvanillajs) (`apps/vanillajs`) | 6s | [Data](./data/github.com/pdfslick/pdfslick/bWFpbgo/YXBwcy92YW5pbGxhanMK) |
| ✅ | [**github.com/pdfslick/pdfslick**](https://github.com/pdfslick/pdfslick/tree/main/apps%2Fweb) (`apps/web`) | 8s | [Data](./data/github.com/pdfslick/pdfslick/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/pekkiriscim/bookmarks**](https://github.com/pekkiriscim/bookmarks/tree/main/) | 7s | [Data](./data/github.com/pekkiriscim/bookmarks/bWFpbgo/Cg) |
| ✅ | [**github.com/pelican-themes/papyrus**](https://github.com/pelican-themes/papyrus/tree/main/) | 8s | [Data](./data/github.com/pelican-themes/papyrus/bWFpbgo/Cg) |
| ✅ | [**github.com/pezzolabs/UniLLM**](https://github.com/pezzolabs/UniLLM/tree/main/apps%2Fdemo) (`apps/demo`) | 6s | [Data](./data/github.com/pezzolabs/UniLLM/bWFpbgo/YXBwcy9kZW1vCg) |
| ✅ | [**github.com/pezzolabs/UniLLM**](https://github.com/pezzolabs/UniLLM/tree/main/apps%2Fdocs) (`apps/docs`) | 7s | [Data](./data/github.com/pezzolabs/UniLLM/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/pheralb/superkey**](https://github.com/pheralb/superkey/tree/main/docs) (`docs`) | 6s | [Data](./data/github.com/pheralb/superkey/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/pheralb/superkey**](https://github.com/pheralb/superkey/tree/main/packages%2Fcomponent) (`packages/component`) | 5s | [Data](./data/github.com/pheralb/superkey/bWFpbgo/cGFja2FnZXMvY29tcG9uZW50Cg) |
| ✅ | [**github.com/pheralb/superkey**](https://github.com/pheralb/superkey/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 5s | [Data](./data/github.com/pheralb/superkey/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/pheralb/svgl**](https://github.com/pheralb/svgl/tree/main/) | 10s | [Data](./data/github.com/pheralb/svgl/bWFpbgo/Cg) |
| ✅ | [**github.com/philippetedajo/philippe.tedajo**](https://github.com/philippetedajo/philippe.tedajo/tree/master/) | 11s | [Data](./data/github.com/philippetedajo/philippe.tedajo/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/picozzimichele/airbnb-clone**](https://github.com/picozzimichele/airbnb-clone/tree/main/) | 8s | [Data](./data/github.com/picozzimichele/airbnb-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/pilarxyz/cek-rekening**](https://github.com/pilarxyz/cek-rekening/tree/main/) | 7s | [Data](./data/github.com/pilarxyz/cek-rekening/bWFpbgo/Cg) |
| ✅ | [**github.com/pingdotgg/uploadthing**](https://github.com/pingdotgg/uploadthing/tree/main/docs) (`docs`) | 9s | [Data](./data/github.com/pingdotgg/uploadthing/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/pingdotgg/uploadthing**](https://github.com/pingdotgg/uploadthing/tree/main/packages%2Freact) (`packages/react`) | 10s | [Data](./data/github.com/pingdotgg/uploadthing/bWFpbgo/cGFja2FnZXMvcmVhY3QK) |
| ✅ | [**github.com/pingdotgg/uploadthing**](https://github.com/pingdotgg/uploadthing/tree/main/packages%2Fsolid) (`packages/solid`) | 11s | [Data](./data/github.com/pingdotgg/uploadthing/bWFpbgo/cGFja2FnZXMvc29saWQK) |
| ✅ | [**github.com/piotr-jura-udemy/laravel-course-2023**](https://github.com/piotr-jura-udemy/laravel-course-2023/tree/master/job-board) (`job-board`) | 9s | [Data](./data/github.com/piotr-jura-udemy/laravel-course-2023/bWFzdGVyCg/am9iLWJvYXJkCg) |
| ✅ | [**github.com/piotr-jura-udemy/laravel-graphql-course-trello-clone**](https://github.com/piotr-jura-udemy/laravel-graphql-course-trello-clone/tree/master/) | 8s | [Data](./data/github.com/piotr-jura-udemy/laravel-graphql-course-trello-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/pittcsc/pittcsc-website**](https://github.com/pittcsc/pittcsc-website/tree/master/) | 16s | [Data](./data/github.com/pittcsc/pittcsc-website/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/pixelbakery/pixelbakery-website**](https://github.com/pixelbakery/pixelbakery-website/tree/main/) | 1m 14s | [Data](./data/github.com/pixelbakery/pixelbakery-website/bWFpbgo/Cg) |
| ✅ | [**github.com/pixeleye-io/pixeleye**](https://github.com/pixeleye-io/pixeleye/tree/main/apps%2Fmarketing) (`apps/marketing`) | 1m 43s | [Data](./data/github.com/pixeleye-io/pixeleye/bWFpbgo/YXBwcy9tYXJrZXRpbmcK) |
| ✅ | [**github.com/pixeleye-io/pixeleye**](https://github.com/pixeleye-io/pixeleye/tree/main/apps%2Fweb) (`apps/web`) | 1m 33s | [Data](./data/github.com/pixeleye-io/pixeleye/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/pixeleye-io/pixeleye**](https://github.com/pixeleye-io/pixeleye/tree/main/configs%2Ftailwind) (`configs/tailwind`) | 1m 26s | [Data](./data/github.com/pixeleye-io/pixeleye/bWFpbgo/Y29uZmlncy90YWlsd2luZAo) |
| ❌ | [**github.com/pixeleye-io/pixeleye**](https://github.com/pixeleye-io/pixeleye/tree/main/libs%2Fui) (`libs/ui`) | *n/a* | [Data](./data/github.com/pixeleye-io/pixeleye/bWFpbgo/bGlicy91aQo) |
| ✅ | [**github.com/platanus/banano**](https://github.com/platanus/banano/tree/master/) | 1m 17s | [Data](./data/github.com/platanus/banano/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/plausible/analytics**](https://github.com/plausible/analytics/tree/master/assets) (`assets`) | *n/a* | [Data](./data/github.com/plausible/analytics/bWFzdGVyCg/YXNzZXRzCg) |
| ❌ | [**github.com/plushdohn/tailprops**](https://github.com/plushdohn/tailprops/tree/main/apps%2Fwebsite) (`apps/website`) | *n/a* | [Data](./data/github.com/plushdohn/tailprops/bWFpbgo/YXBwcy93ZWJzaXRlCg) |
| ✅ | [**github.com/pmndrs/react-three-next**](https://github.com/pmndrs/react-three-next/tree/main/) | 10s | [Data](./data/github.com/pmndrs/react-three-next/bWFpbgo/Cg) |
| ✅ | [**github.com/poketrax/PokeTrax**](https://github.com/poketrax/PokeTrax/tree/main/src-pages) (`src-pages`) | 37s | [Data](./data/github.com/poketrax/PokeTrax/bWFpbgo/c3JjLXBhZ2VzCg) |
| ✅ | [**github.com/poketrax/PokeTrax**](https://github.com/poketrax/PokeTrax/tree/main/src-web) (`src-web`) | 14s | [Data](./data/github.com/poketrax/PokeTrax/bWFpbgo/c3JjLXdlYgo) |
| ✅ | [**github.com/polldo/govod**](https://github.com/polldo/govod/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/polldo/govod/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/pondorasti/chirp**](https://github.com/pondorasti/chirp/tree/main/www) (`www`) | 8s | [Data](./data/github.com/pondorasti/chirp/bWFpbgo/d3d3Cg) |
| ✅ | [**github.com/pondorasti/emojis**](https://github.com/pondorasti/emojis/tree/main/) | 11s | [Data](./data/github.com/pondorasti/emojis/bWFpbgo/Cg) |
| ✅ | [**github.com/portainer/portainer**](https://github.com/portainer/portainer/tree/develop/) | 29s | [Data](./data/github.com/portainer/portainer/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/posva/vite-tailwind-starter**](https://github.com/posva/vite-tailwind-starter/tree/master/) | 9s | [Data](./data/github.com/posva/vite-tailwind-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/powdotkim/PowQuran**](https://github.com/powdotkim/PowQuran/tree/main/) | 6s | [Data](./data/github.com/powdotkim/PowQuran/bWFpbgo/Cg) |
| ✅ | [**github.com/powdotkim/palettepix**](https://github.com/powdotkim/palettepix/tree/main/) | 6s | [Data](./data/github.com/powdotkim/palettepix/bWFpbgo/Cg) |
| ✅ | [**github.com/pranjalshikhar/portfolio-v3**](https://github.com/pranjalshikhar/portfolio-v3/tree/main/) | 9s | [Data](./data/github.com/pranjalshikhar/portfolio-v3/bWFpbgo/Cg) |
| ✅ | [**github.com/prateek3255/blog**](https://github.com/prateek3255/blog/tree/master/) | 11s | [Data](./data/github.com/prateek3255/blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/prateek3255/twitter-clone**](https://github.com/prateek3255/twitter-clone/tree/main/apps%2Fnextjs) (`apps/nextjs`) | 39s | [Data](./data/github.com/prateek3255/twitter-clone/bWFpbgo/YXBwcy9uZXh0anMK) |
| ✅ | [**github.com/prateek3255/twitter-clone**](https://github.com/prateek3255/twitter-clone/tree/main/apps%2Fremix) (`apps/remix`) | 23s | [Data](./data/github.com/prateek3255/twitter-clone/bWFpbgo/YXBwcy9yZW1peAo) |
| ✅ | [**github.com/prathikshetty2002/Research-Nerd**](https://github.com/prathikshetty2002/Research-Nerd/tree/main/Frontend) (`Frontend`) | 10s | [Data](./data/github.com/prathikshetty2002/Research-Nerd/bWFpbgo/RnJvbnRlbmQK) |
| ✅ | [**github.com/praveenjuge/copybook**](https://github.com/praveenjuge/copybook/tree/main/) | 7s | [Data](./data/github.com/praveenjuge/copybook/bWFpbgo/Cg) |
| ✅ | [**github.com/praveenjuge/myna**](https://github.com/praveenjuge/myna/tree/main/) | 8s | [Data](./data/github.com/praveenjuge/myna/bWFpbgo/Cg) |
| ✅ | [**github.com/primefaces/primevue-tailwind**](https://github.com/primefaces/primevue-tailwind/tree/main/) | 8s | [Data](./data/github.com/primefaces/primevue-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/priyankarpal/projectshut**](https://github.com/priyankarpal/projectshut/tree/main/) | 7s | [Data](./data/github.com/priyankarpal/projectshut/bWFpbgo/Cg) |
| ✅ | [**github.com/prnvbirajdar/Personal-Website**](https://github.com/prnvbirajdar/Personal-Website/tree/main/) | 14s | [Data](./data/github.com/prnvbirajdar/Personal-Website/bWFpbgo/Cg) |
| ✅ | [**github.com/pro-tailwind/course-multi-theme-strategy**](https://github.com/pro-tailwind/course-multi-theme-strategy/tree/main/) | 6s | [Data](./data/github.com/pro-tailwind/course-multi-theme-strategy/bWFpbgo/Cg) |
| ✅ | [**github.com/pro-tailwind/email-course-multi-theme-plugin**](https://github.com/pro-tailwind/email-course-multi-theme-plugin/tree/main/part-2) (`part-2`) | 17s | [Data](./data/github.com/pro-tailwind/email-course-multi-theme-plugin/bWFpbgo/cGFydC0yCg) |
| ✅ | [**github.com/pro-tailwind/email-course-multi-theme-plugin**](https://github.com/pro-tailwind/email-course-multi-theme-plugin/tree/main/part-3) (`part-3`) | 14s | [Data](./data/github.com/pro-tailwind/email-course-multi-theme-plugin/bWFpbgo/cGFydC0zCg) |
| ✅ | [**github.com/pro7tech/sveltekit-blog-app**](https://github.com/pro7tech/sveltekit-blog-app/tree/main/) | 10s | [Data](./data/github.com/pro7tech/sveltekit-blog-app/bWFpbgo/Cg) |
| ✅ | [**github.com/proj3rd/tool3rd**](https://github.com/proj3rd/tool3rd/tree/main/) | 7s | [Data](./data/github.com/proj3rd/tool3rd/bWFpbgo/Cg) |
| ✅ | [**github.com/project-sekai-ctf/sekai.team**](https://github.com/project-sekai-ctf/sekai.team/tree/master/) | 13s | [Data](./data/github.com/project-sekai-ctf/sekai.team/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/projectx-codehagen/Badget**](https://github.com/projectx-codehagen/Badget/tree/main/apps%2Fwww) (`apps/www`) | *n/a* | [Data](./data/github.com/projectx-codehagen/Badget/bWFpbgo/YXBwcy93d3cK) |
| ✅ | [**github.com/promptdesk/promptdesk**](https://github.com/promptdesk/promptdesk/tree/main/frontend) (`frontend`) | 6s | [Data](./data/github.com/promptdesk/promptdesk/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/psb/astro-reason**](https://github.com/psb/astro-reason/tree/master/) | 14s | [Data](./data/github.com/psb/astro-reason/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/pterodactyl/panel**](https://github.com/pterodactyl/panel/tree/develop/) | 7s | [Data](./data/github.com/pterodactyl/panel/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/pth-1641/ThunMov**](https://github.com/pth-1641/ThunMov/tree/master/) | 10s | [Data](./data/github.com/pth-1641/ThunMov/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/public-assembly/public-assembly-home-page**](https://github.com/public-assembly/public-assembly-home-page/tree/main/) | 4s | [Data](./data/github.com/public-assembly/public-assembly-home-page/bWFpbgo/Cg) |
| ✅ | [**github.com/pullingoff/nexthome**](https://github.com/pullingoff/nexthome/tree/main/) | 13s | [Data](./data/github.com/pullingoff/nexthome/bWFpbgo/Cg) |
| ✅ | [**github.com/pure-admin/vue-pure-admin**](https://github.com/pure-admin/vue-pure-admin/tree/main/) | 12s | [Data](./data/github.com/pure-admin/vue-pure-admin/bWFpbgo/Cg) |
| ✅ | [**github.com/purpleio/purple-admin-ui**](https://github.com/purpleio/purple-admin-ui/tree/main/) | 9s | [Data](./data/github.com/purpleio/purple-admin-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/pycoder2000/blog**](https://github.com/pycoder2000/blog/tree/master/) | 7s | [Data](./data/github.com/pycoder2000/blog/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/pycontw/pycontw-frontend**](https://github.com/pycontw/pycontw-frontend/tree/main/) | 21s | [Data](./data/github.com/pycontw/pycontw-frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/qbentil/Bentilzone-Restaurant**](https://github.com/qbentil/Bentilzone-Restaurant/tree/master/) | 9s | [Data](./data/github.com/qbentil/Bentilzone-Restaurant/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/quantizor/twyx**](https://github.com/quantizor/twyx/tree/main/) | *n/a* | [Data](./data/github.com/quantizor/twyx/bWFpbgo/Cg) |
| ✅ | [**github.com/quentin-mckay/AI-Quiz-Generator**](https://github.com/quentin-mckay/AI-Quiz-Generator/tree/main/) | 12s | [Data](./data/github.com/quentin-mckay/AI-Quiz-Generator/bWFpbgo/Cg) |
| ✅ | [**github.com/radix-vue/radix-vue**](https://github.com/radix-vue/radix-vue/tree/main/.histoire) (`.histoire`) | 37s | [Data](./data/github.com/radix-vue/radix-vue/bWFpbgo/Lmhpc3RvaXJlCg) |
| ✅ | [**github.com/radix-vue/radix-vue**](https://github.com/radix-vue/radix-vue/tree/main/docs) (`docs`) | 28s | [Data](./data/github.com/radix-vue/radix-vue/bWFpbgo/ZG9jcwo) |
| ❌ | [**github.com/radix-vue/radix-vue**](https://github.com/radix-vue/radix-vue/tree/main/playground%2Fnuxt) (`playground/nuxt`) | *n/a* | [Data](./data/github.com/radix-vue/radix-vue/bWFpbgo/cGxheWdyb3VuZC9udXh0Cg) |
| ❌ | [**github.com/radix-vue/radix-vue**](https://github.com/radix-vue/radix-vue/tree/main/playground%2Fvue3) (`playground/vue3`) | *n/a* | [Data](./data/github.com/radix-vue/radix-vue/bWFpbgo/cGxheWdyb3VuZC92dWUzCg) |
| ✅ | [**github.com/rahulkarda/react-portfolio**](https://github.com/rahulkarda/react-portfolio/tree/master/) | 7s | [Data](./data/github.com/rahulkarda/react-portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/rajasegar/svelte-slides**](https://github.com/rajasegar/svelte-slides/tree/main/) | 7s | [Data](./data/github.com/rajasegar/svelte-slides/bWFpbgo/Cg) |
| ✅ | [**github.com/rakutentech/laravel-request-docs**](https://github.com/rakutentech/laravel-request-docs/tree/master/ui) (`ui`) | 6s | [Data](./data/github.com/rakutentech/laravel-request-docs/bWFzdGVyCg/dWkK) |
| ✅ | [**github.com/raminjafary/vue3-scalable-architecture**](https://github.com/raminjafary/vue3-scalable-architecture/tree/main/) | 8s | [Data](./data/github.com/raminjafary/vue3-scalable-architecture/bWFpbgo/Cg) |
| ✅ | [**github.com/ramniel/react-ts-vite-tailwind-template**](https://github.com/ramniel/react-ts-vite-tailwind-template/tree/main/) | 9s | [Data](./data/github.com/ramniel/react-ts-vite-tailwind-template/bWFpbgo/Cg) |
| ✅ | [**github.com/rapidez/core**](https://github.com/rapidez/core/tree/master/) | 12s | [Data](./data/github.com/rapidez/core/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/rapidpages/rapidpages**](https://github.com/rapidpages/rapidpages/tree/main/) | 8s | [Data](./data/github.com/rapidpages/rapidpages/bWFpbgo/Cg) |
| ✅ | [**github.com/rapidpro/ureport**](https://github.com/rapidpro/ureport/tree/main/) | 10s | [Data](./data/github.com/rapidpro/ureport/bWFpbgo/Cg) |
| ✅ | [**github.com/rauchg/genui-demo**](https://github.com/rauchg/genui-demo/tree/main/) | 7s | [Data](./data/github.com/rauchg/genui-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/raulfdm/raulmelo-studio**](https://github.com/raulfdm/raulmelo-studio/tree/main/website) (`website`) | 1m 3s | [Data](./data/github.com/raulfdm/raulmelo-studio/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/raymondkneipp/portfolio-2022**](https://github.com/raymondkneipp/portfolio-2022/tree/main/) | 21s | [Data](./data/github.com/raymondkneipp/portfolio-2022/bWFpbgo/Cg) |
| ✅ | [**github.com/re-data/re-data**](https://github.com/re-data/re-data/tree/master/re_data_ui) (`re_data_ui`) | 9s | [Data](./data/github.com/re-data/re-data/bWFzdGVyCg/cmVfZGF0YV91aQo) |
| ✅ | [**github.com/reactplay/activities**](https://github.com/reactplay/activities/tree/main/) | 7s | [Data](./data/github.com/reactplay/activities/bWFpbgo/Cg) |
| ✅ | [**github.com/realByg/cfworkers-aichat**](https://github.com/realByg/cfworkers-aichat/tree/master/site) (`site`) | 6s | [Data](./data/github.com/realByg/cfworkers-aichat/bWFzdGVyCg/c2l0ZQo) |
| ✅ | [**github.com/realstoman/nextjs-tailwindcss-portfolio**](https://github.com/realstoman/nextjs-tailwindcss-portfolio/tree/main/) | 8s | [Data](./data/github.com/realstoman/nextjs-tailwindcss-portfolio/bWFpbgo/Cg) |
| ❌ | [**github.com/realstoman/nuxtjs-tailwindcss-portfolio**](https://github.com/realstoman/nuxtjs-tailwindcss-portfolio/tree/main/) | *n/a* | [Data](./data/github.com/realstoman/nuxtjs-tailwindcss-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/realstoman/vuejs-tailwindcss-portfolio**](https://github.com/realstoman/vuejs-tailwindcss-portfolio/tree/main/) | 9s | [Data](./data/github.com/realstoman/vuejs-tailwindcss-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/redxzeta/Awesome-Adoption**](https://github.com/redxzeta/Awesome-Adoption/tree/main/) | 10s | [Data](./data/github.com/redxzeta/Awesome-Adoption/bWFpbgo/Cg) |
| ✅ | [**github.com/refinedev/refine**](https://github.com/refinedev/refine/tree/master/documentation) (`documentation`) | 13s | [Data](./data/github.com/refinedev/refine/bWFzdGVyCg/ZG9jdW1lbnRhdGlvbgo) |
| ✅ | [**github.com/refinedev/refine**](https://github.com/refinedev/refine/tree/master/packages%2Fdevtools-ui) (`packages/devtools-ui`) | 13s | [Data](./data/github.com/refinedev/refine/bWFzdGVyCg/cGFja2FnZXMvZGV2dG9vbHMtdWkK) |
| ✅ | [**github.com/remeda/remeda**](https://github.com/remeda/remeda/tree/master/docs) (`docs`) | 17s | [Data](./data/github.com/remeda/remeda/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/autocomplete) (`autocomplete`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/YXV0b2NvbXBsZXRlCg) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/autofill-tables) (`autofill-tables`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/YXV0b2ZpbGwtdGFibGVzCg) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/dictionary) (`dictionary`) | 9s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/ZGljdGlvbmFyeQo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/dictionary-tutorial) (`dictionary-tutorial`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/ZGljdGlvbmFyeS10dXRvcmlhbAo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/hide-in-queue) (`hide-in-queue`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/aGlkZS1pbi1xdWV1ZQo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/history) (`history`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/aGlzdG9yeQo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/mermaid) (`mermaid`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/bWVybWFpZAo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/new-tabs) (`new-tabs`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/bmV3LXRhYnMK) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/puppy-reinforcement) (`puppy-reinforcement`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/cHVwcHktcmVpbmZvcmNlbWVudAo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/smart-blocks) (`smart-blocks`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/c21hcnQtYmxvY2tzCg) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/tabs) (`tabs`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/dGFicwo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/text-to-speech) (`text-to-speech`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/dGV4dC10by1zcGVlY2gK) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/universal_descriptors) (`universal_descriptors`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/dW5pdmVyc2FsX2Rlc2NyaXB0b3JzCg) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/wiki-popup) (`wiki-popup`) | 6s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/d2lraS1wb3B1cAo) |
| ✅ | [**github.com/remnoteio/remnote-official-plugins**](https://github.com/remnoteio/remnote-official-plugins/tree/main/window-manager) (`window-manager`) | 7s | [Data](./data/github.com/remnoteio/remnote-official-plugins/bWFpbgo/d2luZG93LW1hbmFnZXIK) |
| ✅ | [**github.com/repeekgg/browser-extension**](https://github.com/repeekgg/browser-extension/tree/main/) | 7s | [Data](./data/github.com/repeekgg/browser-extension/bWFpbgo/Cg) |
| ✅ | [**github.com/resend/react-email**](https://github.com/resend/react-email/tree/canary/apps%2Fweb) (`apps/web`) | 50s | [Data](./data/github.com/resend/react-email/Y2FuYXJ5Cg/YXBwcy93ZWIK) |
| ❌ | [**github.com/resend/react-email**](https://github.com/resend/react-email/tree/canary/benchmarks%2Ftailwind-component) (`benchmarks/tailwind-component`) | *n/a* | [Data](./data/github.com/resend/react-email/Y2FuYXJ5Cg/YmVuY2htYXJrcy90YWlsd2luZC1jb21wb25lbnQK) |
| ✅ | [**github.com/resend/react-email**](https://github.com/resend/react-email/tree/canary/packages%2Freact-email) (`packages/react-email`) | 38s | [Data](./data/github.com/resend/react-email/Y2FuYXJ5Cg/cGFja2FnZXMvcmVhY3QtZW1haWwK) |
| ❌ | [**github.com/resir014/stream-overlays**](https://github.com/resir014/stream-overlays/tree/main/) | *n/a* | [Data](./data/github.com/resir014/stream-overlays/bWFpbgo/Cg) |
| ✅ | [**github.com/responsively-org/website**](https://github.com/responsively-org/website/tree/main/) | 10s | [Data](./data/github.com/responsively-org/website/bWFpbgo/Cg) |
| ✅ | [**github.com/restsend/andbrowser**](https://github.com/restsend/andbrowser/tree/main/) | 8s | [Data](./data/github.com/restsend/andbrowser/bWFpbgo/Cg) |
| ✅ | [**github.com/rewindui/rewindui**](https://github.com/rewindui/rewindui/tree/main/apps%2Fdashboard) (`apps/dashboard`) | 1m 7s | [Data](./data/github.com/rewindui/rewindui/bWFpbgo/YXBwcy9kYXNoYm9hcmQK) |
| ✅ | [**github.com/rewindui/rewindui**](https://github.com/rewindui/rewindui/tree/main/apps%2Fdashboard-vite) (`apps/dashboard-vite`) | 2m 29s | [Data](./data/github.com/rewindui/rewindui/bWFpbgo/YXBwcy9kYXNoYm9hcmQtdml0ZQo) |
| ✅ | [**github.com/rewindui/rewindui**](https://github.com/rewindui/rewindui/tree/main/apps%2Fdocs) (`apps/docs`) | 46s | [Data](./data/github.com/rewindui/rewindui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/rewindui/rewindui**](https://github.com/rewindui/rewindui/tree/main/apps%2Fstorybook) (`apps/storybook`) | 41s | [Data](./data/github.com/rewindui/rewindui/bWFpbgo/YXBwcy9zdG9yeWJvb2sK) |
| ✅ | [**github.com/rfortherestofus/r-without-statistics**](https://github.com/rfortherestofus/r-without-statistics/tree/main/website) (`website`) | 36s | [Data](./data/github.com/rfortherestofus/r-without-statistics/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/rgossiaux/svelte-headlessui**](https://github.com/rgossiaux/svelte-headlessui/tree/master/) | 7s | [Data](./data/github.com/rgossiaux/svelte-headlessui/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/riccardogiorato/template-nextjs-tailwind**](https://github.com/riccardogiorato/template-nextjs-tailwind/tree/main/) | *n/a* | [Data](./data/github.com/riccardogiorato/template-nextjs-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/riccardoperra/specflow**](https://github.com/riccardoperra/specflow/tree/main/) | 8s | [Data](./data/github.com/riccardoperra/specflow/bWFpbgo/Cg) |
| ✅ | [**github.com/richardevcom/vue3-boilerplate**](https://github.com/richardevcom/vue3-boilerplate/tree/main/) | 10s | [Data](./data/github.com/richardevcom/vue3-boilerplate/bWFpbgo/Cg) |
| ✅ | [**github.com/richhost/pixzip**](https://github.com/richhost/pixzip/tree/main/) | 6s | [Data](./data/github.com/richhost/pixzip/bWFpbgo/Cg) |
| ✅ | [**github.com/riffusion/riffusion-app**](https://github.com/riffusion/riffusion-app/tree/main/) | 10s | [Data](./data/github.com/riffusion/riffusion-app/bWFpbgo/Cg) |
| ✅ | [**github.com/rimzzlabs/next-starter-blog**](https://github.com/rimzzlabs/next-starter-blog/tree/main/) | 1m 3s | [Data](./data/github.com/rimzzlabs/next-starter-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/rishimohan/pika**](https://github.com/rishimohan/pika/tree/main/) | 9s | [Data](./data/github.com/rishimohan/pika/bWFpbgo/Cg) |
| ✅ | [**github.com/rishimohan/rishimohan.me**](https://github.com/rishimohan/rishimohan.me/tree/main/) | 18s | [Data](./data/github.com/rishimohan/rishimohan.me/bWFpbgo/Cg) |
| ✅ | [**github.com/rizkhal/ayuwind**](https://github.com/rizkhal/ayuwind/tree/master/) | 12s | [Data](./data/github.com/rizkhal/ayuwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/roadmapsh/deprecated-version**](https://github.com/roadmapsh/deprecated-version/tree/master/) | 27s | [Data](./data/github.com/roadmapsh/deprecated-version/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/roadtojobs/roadtojobs**](https://github.com/roadtojobs/roadtojobs/tree/main/web) (`web`) | 8s | [Data](./data/github.com/roadtojobs/roadtojobs/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/robbins23/daisyui-nextjs-landing-page**](https://github.com/robbins23/daisyui-nextjs-landing-page/tree/master/) | 7s | [Data](./data/github.com/robbins23/daisyui-nextjs-landing-page/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/robertguss/Astro-Theme-Creek**](https://github.com/robertguss/Astro-Theme-Creek/tree/master/) | 8s | [Data](./data/github.com/robertguss/Astro-Theme-Creek/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/roberthgnz/tailwind-gradient-generator**](https://github.com/roberthgnz/tailwind-gradient-generator/tree/master/) | 7s | [Data](./data/github.com/roberthgnz/tailwind-gradient-generator/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/robertwayne/petrock**](https://github.com/robertwayne/petrock/tree/dev/client) (`client`) | 9s | [Data](./data/github.com/robertwayne/petrock/ZGV2Cg/Y2xpZW50Cg) |
| ✅ | [**github.com/robiuzzaman4/minifolio**](https://github.com/robiuzzaman4/minifolio/tree/main/) | 7s | [Data](./data/github.com/robiuzzaman4/minifolio/bWFpbgo/Cg) |
| ✅ | [**github.com/robo311/crypto-app**](https://github.com/robo311/crypto-app/tree/master/) | 6s | [Data](./data/github.com/robo311/crypto-app/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/rocketseat-education/ignite-lab-02**](https://github.com/rocketseat-education/ignite-lab-02/tree/main/) | 7s | [Data](./data/github.com/rocketseat-education/ignite-lab-02/bWFpbgo/Cg) |
| ✅ | [**github.com/rocketseat-education/nlw-setup-ignite**](https://github.com/rocketseat-education/nlw-setup-ignite/tree/main/mobile) (`mobile`) | 6s | [Data](./data/github.com/rocketseat-education/nlw-setup-ignite/bWFpbgo/bW9iaWxlCg) |
| ✅ | [**github.com/rocketseat-education/nlw-setup-ignite**](https://github.com/rocketseat-education/nlw-setup-ignite/tree/main/web) (`web`) | 6s | [Data](./data/github.com/rocketseat-education/nlw-setup-ignite/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/rocky-linux/rockylinux.org**](https://github.com/rocky-linux/rockylinux.org/tree/main/) | 7s | [Data](./data/github.com/rocky-linux/rockylinux.org/bWFpbgo/Cg) |
| ✅ | [**github.com/rogden/tailwind-config-viewer**](https://github.com/rogden/tailwind-config-viewer/tree/master/) | 13s | [Data](./data/github.com/rogden/tailwind-config-viewer/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/rohitdasu/projectmate**](https://github.com/rohitdasu/projectmate/tree/main/) | 10s | [Data](./data/github.com/rohitdasu/projectmate/bWFpbgo/Cg) |
| ✅ | [**github.com/roots/sage**](https://github.com/roots/sage/tree/main/) | 1m 18s | [Data](./data/github.com/roots/sage/bWFpbgo/Cg) |
| ✅ | [**github.com/rosszurowski/rosszurowski.com**](https://github.com/rosszurowski/rosszurowski.com/tree/main/) | 7s | [Data](./data/github.com/rosszurowski/rosszurowski.com/bWFpbgo/Cg) |
| ✅ | [**github.com/roybarber/static-starter**](https://github.com/roybarber/static-starter/tree/develop/) | 8s | [Data](./data/github.com/roybarber/static-starter/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/royquilor/twitter-ui-practise**](https://github.com/royquilor/twitter-ui-practise/tree/main/) | 7s | [Data](./data/github.com/royquilor/twitter-ui-practise/bWFpbgo/Cg) |
| ✅ | [**github.com/rsimon/immarkus**](https://github.com/rsimon/immarkus/tree/main/) | 6s | [Data](./data/github.com/rsimon/immarkus/bWFpbgo/Cg) |
| ❌ | [**github.com/rstudio/shinyuieditor**](https://github.com/rstudio/shinyuieditor/tree/main/inst%2Feditor) (`inst/editor`) | *n/a* | [Data](./data/github.com/rstudio/shinyuieditor/bWFpbgo/aW5zdC9lZGl0b3IK) |
| ❌ | [**github.com/rstudio/shinyuieditor**](https://github.com/rstudio/shinyuieditor/tree/main/inst%2Feditor-component-lib) (`inst/editor-component-lib`) | *n/a* | [Data](./data/github.com/rstudio/shinyuieditor/bWFpbgo/aW5zdC9lZGl0b3ItY29tcG9uZW50LWxpYgo) |
| ❌ | [**github.com/rstudio/shinyuieditor**](https://github.com/rstudio/shinyuieditor/tree/main/inst%2Fvscode-extension-client) (`inst/vscode-extension-client`) | *n/a* | [Data](./data/github.com/rstudio/shinyuieditor/bWFpbgo/aW5zdC92c2NvZGUtZXh0ZW5zaW9uLWNsaWVudAo) |
| ✅ | [**github.com/rstudio/shinyuieditor**](https://github.com/rstudio/shinyuieditor/tree/main/inst%2Fwebsite) (`inst/website`) | 15s | [Data](./data/github.com/rstudio/shinyuieditor/bWFpbgo/aW5zdC93ZWJzaXRlCg) |
| ✅ | [**github.com/rubixchain/wallet**](https://github.com/rubixchain/wallet/tree/main/) | 18s | [Data](./data/github.com/rubixchain/wallet/bWFpbgo/Cg) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/3D-Portfolio) (`3D-Portfolio`) | 46s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/M0QtUG9ydGZvbGlvCg) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/CodeAbhi(Leetcode-clone)) (`CodeAbhi(Leetcode-clone)`) | 27s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/Q29kZUFiaGkoTGVldGNvZGUtY2xvbmUpCg) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/airbnb-tailwind) (`airbnb-tailwind`) | 41s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/YWlyYm5iLXRhaWx3aW5kCg) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/car-showcase) (`car-showcase`) | 28s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/Y2FyLXNob3djYXNlCg) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/crudapp) (`crudapp`) | 31s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/Y3J1ZGFwcAo) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/next_image_gallery) (`next_image_gallery`) | 30s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/bmV4dF9pbWFnZV9nYWxsZXJ5Cg) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/palette-generator) (`palette-generator`) | 48s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/cGFsZXR0ZS1nZW5lcmF0b3IK) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/pdfchart) (`pdfchart`) | 29s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/cGRmY2hhcnQK) |
| ✅ | [**github.com/rudra016/WebDev-OpenSource**](https://github.com/rudra016/WebDev-OpenSource/tree/main/quote-gen) (`quote-gen`) | 50s | [Data](./data/github.com/rudra016/WebDev-OpenSource/bWFpbgo/cXVvdGUtZ2VuCg) |
| ✅ | [**github.com/rupali-codes/LinksHub**](https://github.com/rupali-codes/LinksHub/tree/main/) | 10s | [Data](./data/github.com/rupali-codes/LinksHub/bWFpbgo/Cg) |
| ✅ | [**github.com/rushilp2311/SplitBill-frontend**](https://github.com/rushilp2311/SplitBill-frontend/tree/main/) | 11s | [Data](./data/github.com/rushilp2311/SplitBill-frontend/bWFpbgo/Cg) |
| ✅ | [**github.com/rutvikpumak/neogram**](https://github.com/rutvikpumak/neogram/tree/dev/) | 7s | [Data](./data/github.com/rutvikpumak/neogram/ZGV2Cg/Cg) |
| ✅ | [**github.com/ryan-parag/slack-themes**](https://github.com/ryan-parag/slack-themes/tree/master/) | 11s | [Data](./data/github.com/ryan-parag/slack-themes/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ryanaidilp/sistem_absensi_pegawai**](https://github.com/ryanaidilp/sistem_absensi_pegawai/tree/master/) | 7s | [Data](./data/github.com/ryanaidilp/sistem_absensi_pegawai/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ryanccn/moddermore**](https://github.com/ryanccn/moddermore/tree/main/) | 33s | [Data](./data/github.com/ryanccn/moddermore/bWFpbgo/Cg) |
| ✅ | [**github.com/ryang420/Knowledge-Graph-LLM**](https://github.com/ryang420/Knowledge-Graph-LLM/tree/main/ui) (`ui`) | 6s | [Data](./data/github.com/ryang420/Knowledge-Graph-LLM/bWFpbgo/dWkK) |
| ✅ | [**github.com/ryangjchandler/phpast.com**](https://github.com/ryangjchandler/phpast.com/tree/main/) | 8s | [Data](./data/github.com/ryangjchandler/phpast.com/bWFpbgo/Cg) |
| ✅ | [**github.com/s0er3n/GeoBingo.io**](https://github.com/s0er3n/GeoBingo.io/tree/main/Frontend) (`Frontend`) | 9s | [Data](./data/github.com/s0er3n/GeoBingo.io/bWFpbgo/RnJvbnRlbmQK) |
| ❌ | [**github.com/saadeghi/daisyui**](https://github.com/saadeghi/daisyui/tree/master/src%2Fdocs) (`src/docs`) | *n/a* | [Data](./data/github.com/saadeghi/daisyui/bWFzdGVyCg/c3JjL2RvY3MK) |
| ✅ | [**github.com/sachintha-lk/CRM-laravel**](https://github.com/sachintha-lk/CRM-laravel/tree/master/) | 10s | [Data](./data/github.com/sachintha-lk/CRM-laravel/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/sadanandpai/javascript-code-challenges**](https://github.com/sadanandpai/javascript-code-challenges/tree/main/web) (`web`) | 9s | [Data](./data/github.com/sadanandpai/javascript-code-challenges/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/saddamarbaa/google-clone-app-nex-js-typescript**](https://github.com/saddamarbaa/google-clone-app-nex-js-typescript/tree/main/) | 8s | [Data](./data/github.com/saddamarbaa/google-clone-app-nex-js-typescript/bWFpbgo/Cg) |
| ✅ | [**github.com/sadmann7/skateshop**](https://github.com/sadmann7/skateshop/tree/main/) | 8s | [Data](./data/github.com/sadmann7/skateshop/bWFpbgo/Cg) |
| ✅ | [**github.com/sahandghavidel/insta-v4**](https://github.com/sahandghavidel/insta-v4/tree/main/) | 6s | [Data](./data/github.com/sahandghavidel/insta-v4/bWFpbgo/Cg) |
| ✅ | [**github.com/saicaca/fuwari**](https://github.com/saicaca/fuwari/tree/main/) | 27s | [Data](./data/github.com/saicaca/fuwari/bWFpbgo/Cg) |
| ✅ | [**github.com/saifulshihab/facebook-clone**](https://github.com/saifulshihab/facebook-clone/tree/master/) | 12s | [Data](./data/github.com/saifulshihab/facebook-clone/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/sailboatui/sailboatui**](https://github.com/sailboatui/sailboatui/tree/main/) | 11s | [Data](./data/github.com/sailboatui/sailboatui/bWFpbgo/Cg) |
| ✅ | [**github.com/saleor/storefront**](https://github.com/saleor/storefront/tree/main/) | 9s | [Data](./data/github.com/saleor/storefront/bWFpbgo/Cg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v1) (`dashboard-v1`) | 12s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYxCg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v1-app-dir) (`dashboard-v1-app-dir`) | 8s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYxLWFwcC1kaXIK) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v10) (`dashboard-v10`) | 10s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYxMAo) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v2) (`dashboard-v2`) | 10s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYyCg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v2-app-dir) (`dashboard-v2-app-dir`) | 8s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYyLWFwcC1kaXIK) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v3) (`dashboard-v3`) | 9s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYzCg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v3-app-dir) (`dashboard-v3-app-dir`) | 7s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYzLWFwcC1kaXIK) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v4) (`dashboard-v4`) | 11s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY0Cg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v4-app-dir) (`dashboard-v4-app-dir`) | 7s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY0LWFwcC1kaXIK) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v5) (`dashboard-v5`) | 11s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY1Cg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v5-app-dir) (`dashboard-v5-app-dir`) | 9s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY1LWFwcC1kaXIK) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v6) (`dashboard-v6`) | 11s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY2Cg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v6-app-dir) (`dashboard-v6-app-dir`) | 8s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY2LWFwcC1kaXIK) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v7) (`dashboard-v7`) | 11s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY3Cg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v8) (`dashboard-v8`) | 10s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY4Cg) |
| ✅ | [**github.com/salvia-kit/next-dashboards**](https://github.com/salvia-kit/next-dashboards/tree/main/dashboard-v9) (`dashboard-v9`) | 10s | [Data](./data/github.com/salvia-kit/next-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY5Cg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v1) (`dashboard-v1`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYxCg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v2) (`dashboard-v2`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYyCg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v3) (`dashboard-v3`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYzCg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v4) (`dashboard-v4`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY0Cg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v5) (`dashboard-v5`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY1Cg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v6) (`dashboard-v6`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY2Cg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v7) (`dashboard-v7`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY3Cg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v8) (`dashboard-v8`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY4Cg) |
| ❌ | [**github.com/salvia-kit/nuxt-dashboards**](https://github.com/salvia-kit/nuxt-dashboards/tree/main/dashboard-v9) (`dashboard-v9`) | *n/a* | [Data](./data/github.com/salvia-kit/nuxt-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY5Cg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v1) (`dashboard-v1`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYxCg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v10) (`dashboard-v10`) | 8s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYxMAo) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v2) (`dashboard-v2`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYyCg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v3) (`dashboard-v3`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXYzCg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v4) (`dashboard-v4`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY0Cg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v5) (`dashboard-v5`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY1Cg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v6) (`dashboard-v6`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY2Cg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v7) (`dashboard-v7`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY3Cg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v8) (`dashboard-v8`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY4Cg) |
| ✅ | [**github.com/salvia-kit/svelte-dashboards**](https://github.com/salvia-kit/svelte-dashboards/tree/main/dashboard-v9) (`dashboard-v9`) | 7s | [Data](./data/github.com/salvia-kit/svelte-dashboards/bWFpbgo/ZGFzaGJvYXJkLXY5Cg) |
| ✅ | [**github.com/samanhoseinpour/nike-store**](https://github.com/samanhoseinpour/nike-store/tree/main/) | 7s | [Data](./data/github.com/samanhoseinpour/nike-store/bWFpbgo/Cg) |
| ✅ | [**github.com/sampoder/berowra**](https://github.com/sampoder/berowra/tree/main/) | 10s | [Data](./data/github.com/sampoder/berowra/bWFpbgo/Cg) |
| ✅ | [**github.com/samrobbins85/colour-a11y-for-tailwind**](https://github.com/samrobbins85/colour-a11y-for-tailwind/tree/master/) | 9s | [Data](./data/github.com/samrobbins85/colour-a11y-for-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/samselikoff/2022-12-07-ios-16-slider**](https://github.com/samselikoff/2022-12-07-ios-16-slider/tree/main/) | 7s | [Data](./data/github.com/samselikoff/2022-12-07-ios-16-slider/bWFpbgo/Cg) |
| ✅ | [**github.com/samselikoff/samselikoff.com**](https://github.com/samselikoff/samselikoff.com/tree/master/) | 14s | [Data](./data/github.com/samselikoff/samselikoff.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/samuelkraft/samuelkraft-next**](https://github.com/samuelkraft/samuelkraft-next/tree/master/) | 15s | [Data](./data/github.com/samuelkraft/samuelkraft-next/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/sanjayheaven/ggb**](https://github.com/sanjayheaven/ggb/tree/main/docs%2Fgo-gin-boilerplate) (`docs/go-gin-boilerplate`) | 7s | [Data](./data/github.com/sanjayheaven/ggb/bWFpbgo/ZG9jcy9nby1naW4tYm9pbGVycGxhdGUK) |
| ✅ | [**github.com/sannajammeh/tw-classed**](https://github.com/sannajammeh/tw-classed/tree/master/apps%2Fbenchmark) (`apps/benchmark`) | 48s | [Data](./data/github.com/sannajammeh/tw-classed/bWFzdGVyCg/YXBwcy9iZW5jaG1hcmsK) |
| ✅ | [**github.com/sannajammeh/tw-classed**](https://github.com/sannajammeh/tw-classed/tree/master/apps%2Fdocs) (`apps/docs`) | 1m 1s | [Data](./data/github.com/sannajammeh/tw-classed/bWFzdGVyCg/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/sansui-orz/qiankun-admin**](https://github.com/sansui-orz/qiankun-admin/tree/main/) | 7s | [Data](./data/github.com/sansui-orz/qiankun-admin/bWFpbgo/Cg) |
| ✅ | [**github.com/sansui-orz/qiankun-admin**](https://github.com/sansui-orz/qiankun-admin/tree/main/sub-projects%2Freact-admin) (`sub-projects/react-admin`) | 8s | [Data](./data/github.com/sansui-orz/qiankun-admin/bWFpbgo/c3ViLXByb2plY3RzL3JlYWN0LWFkbWluCg) |
| ✅ | [**github.com/sansui-orz/qiankun-admin**](https://github.com/sansui-orz/qiankun-admin/tree/main/sub-projects%2Fvue-admin) (`sub-projects/vue-admin`) | 7s | [Data](./data/github.com/sansui-orz/qiankun-admin/bWFpbgo/c3ViLXByb2plY3RzL3Z1ZS1hZG1pbgo) |
| ✅ | [**github.com/santoshyadavdev/angular-snippets**](https://github.com/santoshyadavdev/angular-snippets/tree/main/) | 19s | [Data](./data/github.com/santoshyadavdev/angular-snippets/bWFpbgo/Cg) |
| ✅ | [**github.com/sardapv/angular-material-starter-template**](https://github.com/sardapv/angular-material-starter-template/tree/main/) | 6s | [Data](./data/github.com/sardapv/angular-material-starter-template/bWFpbgo/Cg) |
| ✅ | [**github.com/satnaing/astro-paper**](https://github.com/satnaing/astro-paper/tree/main/) | 26s | [Data](./data/github.com/satnaing/astro-paper/bWFpbgo/Cg) |
| ✅ | [**github.com/satnaing/haru-fashion**](https://github.com/satnaing/haru-fashion/tree/main/) | 11s | [Data](./data/github.com/satnaing/haru-fashion/bWFpbgo/Cg) |
| ✅ | [**github.com/satyawikananda/berita-indo-api**](https://github.com/satyawikananda/berita-indo-api/tree/main/) | 6s | [Data](./data/github.com/satyawikananda/berita-indo-api/bWFpbgo/Cg) |
| ✅ | [**github.com/saurabhnative/create-frontend-readme**](https://github.com/saurabhnative/create-frontend-readme/tree/main/) | 9s | [Data](./data/github.com/saurabhnative/create-frontend-readme/bWFpbgo/Cg) |
| ❌ | [**github.com/scaffold-eth/scaffold-eth-2**](https://github.com/scaffold-eth/scaffold-eth-2/tree/main/packages%2Fnextjs) (`packages/nextjs`) | *n/a* | [Data](./data/github.com/scaffold-eth/scaffold-eth-2/bWFpbgo/cGFja2FnZXMvbmV4dGpzCg) |
| ✅ | [**github.com/sccreeper/goputer**](https://github.com/sccreeper/goputer/tree/main/frontends%2Fweb) (`frontends/web`) | 7s | [Data](./data/github.com/sccreeper/goputer/bWFpbgo/ZnJvbnRlbmRzL3dlYgo) |
| ✅ | [**github.com/schej-it/schej.it**](https://github.com/schej-it/schej.it/tree/main/frontend) (`frontend`) | 6s | [Data](./data/github.com/schej-it/schej.it/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/scio-labs/inkathon**](https://github.com/scio-labs/inkathon/tree/main/frontend) (`frontend`) | 29s | [Data](./data/github.com/scio-labs/inkathon/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/sct/overseerr**](https://github.com/sct/overseerr/tree/develop/) | 17s | [Data](./data/github.com/sct/overseerr/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/seki2020/free-kanban**](https://github.com/seki2020/free-kanban/tree/master/) | 6s | [Data](./data/github.com/seki2020/free-kanban/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/selemondev/windi-ui**](https://github.com/selemondev/windi-ui/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 21s | [Data](./data/github.com/selemondev/windi-ui/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ❌ | [**github.com/selemondev/windi-ui**](https://github.com/selemondev/windi-ui/tree/main/packages%2Fwindi) (`packages/windi`) | *n/a* | [Data](./data/github.com/selemondev/windi-ui/bWFpbgo/cGFja2FnZXMvd2luZGkK) |
| ✅ | [**github.com/selemondev/windi-ui**](https://github.com/selemondev/windi-ui/tree/main/playground) (`playground`) | 20s | [Data](./data/github.com/selemondev/windi-ui/bWFpbgo/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/serge-chat/serge**](https://github.com/serge-chat/serge/tree/main/web) (`web`) | 7s | [Data](./data/github.com/serge-chat/serge/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/sergeysova/craft**](https://github.com/sergeysova/craft/tree/main/apps%2Fweb) (`apps/web`) | 41s | [Data](./data/github.com/sergeysova/craft/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/sergeysova/craft**](https://github.com/sergeysova/craft/tree/main/packages%2Fcore) (`packages/core`) | 35s | [Data](./data/github.com/sergeysova/craft/bWFpbgo/cGFja2FnZXMvY29yZQo) |
| ✅ | [**github.com/sergeysova/craft**](https://github.com/sergeysova/craft/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 24s | [Data](./data/github.com/sergeysova/craft/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/serratus-bio/serratus.io**](https://github.com/serratus-bio/serratus.io/tree/main/) | 10s | [Data](./data/github.com/serratus-bio/serratus.io/bWFpbgo/Cg) |
| ✅ | [**github.com/serversideup/financial-freedom**](https://github.com/serversideup/financial-freedom/tree/main/) | 14s | [Data](./data/github.com/serversideup/financial-freedom/bWFpbgo/Cg) |
| ✅ | [**github.com/serversideup/financial-freedom**](https://github.com/serversideup/financial-freedom/tree/main/docs) (`docs`) | 2m 6s | [Data](./data/github.com/serversideup/financial-freedom/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/setlife-network/trinary**](https://github.com/setlife-network/trinary/tree/develop/) | 5s | [Data](./data/github.com/setlife-network/trinary/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/setsevireon/photophobia**](https://github.com/setsevireon/photophobia/tree/main/) | 9s | [Data](./data/github.com/setsevireon/photophobia/bWFpbgo/Cg) |
| ✅ | [**github.com/sfx101/deck**](https://github.com/sfx101/deck/tree/master/) | 7s | [Data](./data/github.com/sfx101/deck/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/shabraware/Beaches**](https://github.com/shabraware/Beaches/tree/master/) | 7s | [Data](./data/github.com/shabraware/Beaches/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/shadcn-ui/next-template**](https://github.com/shadcn-ui/next-template/tree/main/) | 7s | [Data](./data/github.com/shadcn-ui/next-template/bWFpbgo/Cg) |
| ✅ | [**github.com/shadcn-ui/taxonomy**](https://github.com/shadcn-ui/taxonomy/tree/main/) | 7s | [Data](./data/github.com/shadcn-ui/taxonomy/bWFpbgo/Cg) |
| ✅ | [**github.com/shadcn-ui/ui**](https://github.com/shadcn-ui/ui/tree/main/) | 1m 15s | [Data](./data/github.com/shadcn-ui/ui/bWFpbgo/Cg) |
| ✅ | [**github.com/shadcn-ui/ui**](https://github.com/shadcn-ui/ui/tree/main/apps%2Fwww) (`apps/www`) | 1m 12s | [Data](./data/github.com/shadcn-ui/ui/bWFpbgo/YXBwcy93d3cK) |
| ✅ | [**github.com/shadcn-ui/ui**](https://github.com/shadcn-ui/ui/tree/main/templates%2Fnext-template) (`templates/next-template`) | 53s | [Data](./data/github.com/shadcn-ui/ui/bWFpbgo/dGVtcGxhdGVzL25leHQtdGVtcGxhdGUK) |
| ✅ | [**github.com/shadcn/next-contentlayer**](https://github.com/shadcn/next-contentlayer/tree/main/) | 9s | [Data](./data/github.com/shadcn/next-contentlayer/bWFpbgo/Cg) |
| ✅ | [**github.com/shahsagarm/sagarshah.dev**](https://github.com/shahsagarm/sagarshah.dev/tree/main/) | 6s | [Data](./data/github.com/shahsagarm/sagarshah.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/shakiroye/tgTech-communities**](https://github.com/shakiroye/tgTech-communities/tree/main/) | 6s | [Data](./data/github.com/shakiroye/tgTech-communities/bWFpbgo/Cg) |
| ✅ | [**github.com/shakyapeiris/Feed-The-Snake**](https://github.com/shakyapeiris/Feed-The-Snake/tree/main/) | 7s | [Data](./data/github.com/shakyapeiris/Feed-The-Snake/bWFpbgo/Cg) |
| ✅ | [**github.com/shamscorner/electron-vite-ts-stackter**](https://github.com/shamscorner/electron-vite-ts-stackter/tree/main/) | 7s | [Data](./data/github.com/shamscorner/electron-vite-ts-stackter/bWFpbgo/Cg) |
| ✅ | [**github.com/shamscorner/vue-3-stackter**](https://github.com/shamscorner/vue-3-stackter/tree/main/) | 9s | [Data](./data/github.com/shamscorner/vue-3-stackter/bWFpbgo/Cg) |
| ✅ | [**github.com/shaqdeff/Portfolio-Template**](https://github.com/shaqdeff/Portfolio-Template/tree/main/) | 10s | [Data](./data/github.com/shaqdeff/Portfolio-Template/bWFpbgo/Cg) |
| ✅ | [**github.com/shareweave/shareweave**](https://github.com/shareweave/shareweave/tree/master/frontend) (`frontend`) | 9s | [Data](./data/github.com/shareweave/shareweave/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/sheeehy/GeoGit**](https://github.com/sheeehy/GeoGit/tree/main/) | 11s | [Data](./data/github.com/sheeehy/GeoGit/bWFpbgo/Cg) |
| ✅ | [**github.com/shehza-d/portfolio**](https://github.com/shehza-d/portfolio/tree/main/) | 9s | [Data](./data/github.com/shehza-d/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/shepherd-pro/shepherd**](https://github.com/shepherd-pro/shepherd/tree/master/landing) (`landing`) | 22s | [Data](./data/github.com/shepherd-pro/shepherd/bWFzdGVyCg/bGFuZGluZwo) |
| ✅ | [**github.com/shfshanyue/httpstatus**](https://github.com/shfshanyue/httpstatus/tree/master/) | 7s | [Data](./data/github.com/shfshanyue/httpstatus/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/shi-gui/react-admin-template**](https://github.com/shi-gui/react-admin-template/tree/master/) | 7s | [Data](./data/github.com/shi-gui/react-admin-template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/shiftwalk/shiftwalk-nextjs-starter**](https://github.com/shiftwalk/shiftwalk-nextjs-starter/tree/main/) | 8s | [Data](./data/github.com/shiftwalk/shiftwalk-nextjs-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/shinokada/svelte-heros-v2**](https://github.com/shinokada/svelte-heros-v2/tree/main/) | 11s | [Data](./data/github.com/shinokada/svelte-heros-v2/bWFpbgo/Cg) |
| ✅ | [**github.com/shinokada/svelte-starter**](https://github.com/shinokada/svelte-starter/tree/main/) | 7s | [Data](./data/github.com/shinokada/svelte-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/shivanshubisht/chatgpt**](https://github.com/shivanshubisht/chatgpt/tree/main/) | 6s | [Data](./data/github.com/shivanshubisht/chatgpt/bWFpbgo/Cg) |
| ✅ | [**github.com/shopperlabs/shopper**](https://github.com/shopperlabs/shopper/tree/1.x/) | 13s | [Data](./data/github.com/shopperlabs/shopper/MS54Cg/Cg) |
| ✅ | [**github.com/shubh73/devfolio**](https://github.com/shubh73/devfolio/tree/main/) | 10s | [Data](./data/github.com/shubh73/devfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/shuding/nextra**](https://github.com/shuding/nextra/tree/main/docs) (`docs`) | 1m 19s | [Data](./data/github.com/shuding/nextra/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/shuding/nextra**](https://github.com/shuding/nextra/tree/main/packages%2Fnextra-theme-blog) (`packages/nextra-theme-blog`) | 1m 23s | [Data](./data/github.com/shuding/nextra/bWFpbgo/cGFja2FnZXMvbmV4dHJhLXRoZW1lLWJsb2cK) |
| ✅ | [**github.com/shuding/nextra**](https://github.com/shuding/nextra/tree/main/packages%2Fnextra-theme-docs) (`packages/nextra-theme-docs`) | 1m 23s | [Data](./data/github.com/shuding/nextra/bWFpbgo/cGFja2FnZXMvbmV4dHJhLXRoZW1lLWRvY3MK) |
| ✅ | [**github.com/shufo/shufo.dev**](https://github.com/shufo/shufo.dev/tree/main/) | 14s | [Data](./data/github.com/shufo/shufo.dev/bWFpbgo/Cg) |
| ✅ | [**github.com/shurco/litecart**](https://github.com/shurco/litecart/tree/main/web%2Fadmin) (`web/admin`) | 11s | [Data](./data/github.com/shurco/litecart/bWFpbgo/d2ViL2FkbWluCg) |
| ✅ | [**github.com/shurco/litecart**](https://github.com/shurco/litecart/tree/main/web%2Fsite) (`web/site`) | 10s | [Data](./data/github.com/shurco/litecart/bWFpbgo/d2ViL3NpdGUK) |
| ✅ | [**github.com/shyamtawli/devFind**](https://github.com/shyamtawli/devFind/tree/master/) | 7s | [Data](./data/github.com/shyamtawli/devFind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/siddsarkar/iitkgp-erp-auto-login-extension**](https://github.com/siddsarkar/iitkgp-erp-auto-login-extension/tree/main/) | 11s | [Data](./data/github.com/siddsarkar/iitkgp-erp-auto-login-extension/bWFpbgo/Cg) |
| ❌ | [**github.com/sidharrth2002/sambal-sos-app**](https://github.com/sidharrth2002/sambal-sos-app/tree/main/packages%2Fwebapp) (`packages/webapp`) | *n/a* | [Data](./data/github.com/sidharrth2002/sambal-sos-app/bWFpbgo/cGFja2FnZXMvd2ViYXBwCg) |
| ✅ | [**github.com/sidx8/Chatbot-flow-builder**](https://github.com/sidx8/Chatbot-flow-builder/tree/main/) | 8s | [Data](./data/github.com/sidx8/Chatbot-flow-builder/bWFpbgo/Cg) |
| ❌ | [**github.com/significa/significa.co**](https://github.com/significa/significa.co/tree/main/) | *n/a* | [Data](./data/github.com/significa/significa.co/bWFpbgo/Cg) |
| ✅ | [**github.com/simplex-chat/simplex-chat**](https://github.com/simplex-chat/simplex-chat/tree/stable/website) (`website`) | 18s | [Data](./data/github.com/simplex-chat/simplex-chat/c3RhYmxlCg/d2Vic2l0ZQo) |
| ✅ | [**github.com/simulaiofficial/simulai**](https://github.com/simulaiofficial/simulai/tree/main/) | 7s | [Data](./data/github.com/simulaiofficial/simulai/bWFpbgo/Cg) |
| ✅ | [**github.com/sinan-aydogan/tailadmin-laravel**](https://github.com/sinan-aydogan/tailadmin-laravel/tree/main/) | 8s | [Data](./data/github.com/sinan-aydogan/tailadmin-laravel/bWFpbgo/Cg) |
| ✅ | [**github.com/sionic-ai/webgpu-llm-loader**](https://github.com/sionic-ai/webgpu-llm-loader/tree/main/) | 9s | [Data](./data/github.com/sionic-ai/webgpu-llm-loader/bWFpbgo/Cg) |
| ✅ | [**github.com/skeletonlabs/skeleton**](https://github.com/skeletonlabs/skeleton/tree/dev/packages%2Fplugin) (`packages/plugin`) | 26s | [Data](./data/github.com/skeletonlabs/skeleton/ZGV2Cg/cGFja2FnZXMvcGx1Z2luCg) |
| ✅ | [**github.com/skeletonlabs/skeleton**](https://github.com/skeletonlabs/skeleton/tree/dev/packages%2Fskeleton) (`packages/skeleton`) | 39s | [Data](./data/github.com/skeletonlabs/skeleton/ZGV2Cg/cGFja2FnZXMvc2tlbGV0b24K) |
| ✅ | [**github.com/skeletonlabs/skeleton**](https://github.com/skeletonlabs/skeleton/tree/dev/sites%2Fskeleton.dev) (`sites/skeleton.dev`) | 47s | [Data](./data/github.com/skeletonlabs/skeleton/ZGV2Cg/c2l0ZXMvc2tlbGV0b24uZGV2Cg) |
| ✅ | [**github.com/skillrecordings/egghead-next**](https://github.com/skillrecordings/egghead-next/tree/main/) | 10s | [Data](./data/github.com/skillrecordings/egghead-next/bWFpbgo/Cg) |
| ✅ | [**github.com/sleepyfran/readder**](https://github.com/sleepyfran/readder/tree/main/) | 7s | [Data](./data/github.com/sleepyfran/readder/bWFpbgo/Cg) |
| ✅ | [**github.com/smallbets/userbase**](https://github.com/smallbets/userbase/tree/master/src%2Fproof-of-concept) (`src/proof-of-concept`) | 8s | [Data](./data/github.com/smallbets/userbase/bWFzdGVyCg/c3JjL3Byb29mLW9mLWNvbmNlcHQK) |
| ✅ | [**github.com/smartcontractkit/run-functions-dapp**](https://github.com/smartcontractkit/run-functions-dapp/tree/main/app) (`app`) | 6s | [Data](./data/github.com/smartcontractkit/run-functions-dapp/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/smartdev0328/nft-landing-frontend-backend**](https://github.com/smartdev0328/nft-landing-frontend-backend/tree/main/) | 10s | [Data](./data/github.com/smartdev0328/nft-landing-frontend-backend/bWFpbgo/Cg) |
| ✅ | [**github.com/smartive/smartive.ch**](https://github.com/smartive/smartive.ch/tree/main/) | 1m 10s | [Data](./data/github.com/smartive/smartive.ch/bWFpbgo/Cg) |
| ✅ | [**github.com/smitpatelx/socket_chat**](https://github.com/smitpatelx/socket_chat/tree/master/) | 7s | [Data](./data/github.com/smitpatelx/socket_chat/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/smokeyfro/SmokeyFro.com**](https://github.com/smokeyfro/SmokeyFro.com/tree/master/) | 14s | [Data](./data/github.com/smokeyfro/SmokeyFro.com/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/smol-ai/GodMode**](https://github.com/smol-ai/GodMode/tree/main/) | 7s | [Data](./data/github.com/smol-ai/GodMode/bWFpbgo/Cg) |
| ✅ | [**github.com/snowball-tools/iglootools-home**](https://github.com/snowball-tools/iglootools-home/tree/main/) | 13s | [Data](./data/github.com/snowball-tools/iglootools-home/bWFpbgo/Cg) |
| ✅ | [**github.com/sokhuong-uon/discord-clone-old**](https://github.com/sokhuong-uon/discord-clone-old/tree/master/) | 9s | [Data](./data/github.com/sokhuong-uon/discord-clone-old/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/solana-developers/burner-codes**](https://github.com/solana-developers/burner-codes/tree/master/) | 1m 13s | [Data](./data/github.com/solana-developers/burner-codes/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/solelychloe/arciniega.one**](https://github.com/solelychloe/arciniega.one/tree/master/) | 24s | [Data](./data/github.com/solelychloe/arciniega.one/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/solfacil/components-ui**](https://github.com/solfacil/components-ui/tree/main/) | *n/a* | [Data](./data/github.com/solfacil/components-ui/bWFpbgo/Cg) |
| ✅ | [**github.com/solidjs/solid-start**](https://github.com/solidjs/solid-start/tree/main/) | 1m 4s | [Data](./data/github.com/solidjs/solid-start/bWFpbgo/Cg) |
| ✅ | [**github.com/solygambas/next-projects**](https://github.com/solygambas/next-projects/tree/main/00-playground%2F09-jit-next) (`00-playground/09-jit-next`) | 12s | [Data](./data/github.com/solygambas/next-projects/bWFpbgo/MDAtcGxheWdyb3VuZC8wOS1qaXQtbmV4dAo) |
| ✅ | [**github.com/solygambas/next-projects**](https://github.com/solygambas/next-projects/tree/main/00-playground%2F13-dojo-helpdesk) (`00-playground/13-dojo-helpdesk`) | 9s | [Data](./data/github.com/solygambas/next-projects/bWFpbgo/MDAtcGxheWdyb3VuZC8xMy1kb2pvLWhlbHBkZXNrCg) |
| ✅ | [**github.com/solygambas/next-projects**](https://github.com/solygambas/next-projects/tree/main/00-playground%2F14-ninja-recipes) (`00-playground/14-ninja-recipes`) | 9s | [Data](./data/github.com/solygambas/next-projects/bWFpbgo/MDAtcGxheWdyb3VuZC8xNC1uaW5qYS1yZWNpcGVzCg) |
| ✅ | [**github.com/solygambas/next-projects**](https://github.com/solygambas/next-projects/tree/main/06-devspace) (`06-devspace`) | 9s | [Data](./data/github.com/solygambas/next-projects/bWFpbgo/MDYtZGV2c3BhY2UK) |
| ❌ | [**github.com/sonnylazuardi/budiman**](https://github.com/sonnylazuardi/budiman/tree/main/) | *n/a* | [Data](./data/github.com/sonnylazuardi/budiman/bWFpbgo/Cg) |
| ✅ | [**github.com/sonofmagic/icebreaker.top**](https://github.com/sonofmagic/icebreaker.top/tree/dev/apps%2Fblog) (`apps/blog`) | 16s | [Data](./data/github.com/sonofmagic/icebreaker.top/ZGV2Cg/YXBwcy9ibG9nCg) |
| ✅ | [**github.com/sonofmagic/icebreaker.top**](https://github.com/sonofmagic/icebreaker.top/tree/dev/apps%2Fblog-new) (`apps/blog-new`) | 32s | [Data](./data/github.com/sonofmagic/icebreaker.top/ZGV2Cg/YXBwcy9ibG9nLW5ldwo) |
| ✅ | [**github.com/sonofmagic/icebreaker.top**](https://github.com/sonofmagic/icebreaker.top/tree/dev/apps%2Fsupabase-vue-3) (`apps/supabase-vue-3`) | 11s | [Data](./data/github.com/sonofmagic/icebreaker.top/ZGV2Cg/YXBwcy9zdXBhYmFzZS12dWUtMwo) |
| ✅ | [**github.com/sonofmagic/serverless-nuxt3-template**](https://github.com/sonofmagic/serverless-nuxt3-template/tree/main/) | 9s | [Data](./data/github.com/sonofmagic/serverless-nuxt3-template/bWFpbgo/Cg) |
| ✅ | [**github.com/sonofmagic/uni-app-vite-vue3-tailwind-vscode-template**](https://github.com/sonofmagic/uni-app-vite-vue3-tailwind-vscode-template/tree/main/) | 1m 50s | [Data](./data/github.com/sonofmagic/uni-app-vite-vue3-tailwind-vscode-template/bWFpbgo/Cg) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo-linked%2Ftaro-app-react) (`demo-linked/taro-app-react`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby1saW5rZWQvdGFyby1hcHAtcmVhY3QK) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo-linked%2Funi-app-vite) (`demo-linked/uni-app-vite`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby1saW5rZWQvdW5pLWFwcC12aXRlCg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo-linked%2Funi-app-webpack4) (`demo-linked/uni-app-webpack4`) | 58s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby1saW5rZWQvdW5pLWFwcC13ZWJwYWNrNAo) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo-linked%2Funi-app-webpack5) (`demo-linked/uni-app-webpack5`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby1saW5rZWQvdW5pLWFwcC13ZWJwYWNrNQo) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Fgulp-app) (`demo/gulp-app`) | 18s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby9ndWxwLWFwcAo) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Fmpx-app) (`demo/mpx-app`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby9tcHgtYXBwCg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Fnative-mina) (`demo/native-mina`) | 2m 1s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby9uYXRpdmUtbWluYQo) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Frax-app) (`demo/rax-app`) | 11s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby9yYXgtYXBwCg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Ftaro-app) (`demo/taro-app`) | 4m 33s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby90YXJvLWFwcAo) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Ftaro-vue2-app) (`demo/taro-vue2-app`) | 3m 59s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby90YXJvLXZ1ZTItYXBwCg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Ftaro-vue3-app) (`demo/taro-vue3-app`) | 3m 47s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby90YXJvLXZ1ZTMtYXBwCg) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Funi-app) (`demo/uni-app`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby91bmktYXBwCg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Funi-app-vue3-vite) (`demo/uni-app-vue3-vite`) | 1m 37s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby91bmktYXBwLXZ1ZTMtdml0ZQo) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/demo%2Funi-app-webpack5) (`demo/uni-app-webpack5`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/ZGVtby91bmktYXBwLXdlYnBhY2s1Cg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/how-to-build-components-by-tailwindcss%2Freact-lib) (`how-to-build-components-by-tailwindcss/react-lib`) | 10s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/aG93LXRvLWJ1aWxkLWNvbXBvbmVudHMtYnktdGFpbHdpbmRjc3MvcmVhY3QtbGliCg) |
| ✅ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/how-to-build-components-by-tailwindcss%2Fvue-lib) (`how-to-build-components-by-tailwindcss/vue-lib`) | 9s | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/aG93LXRvLWJ1aWxkLWNvbXBvbmVudHMtYnktdGFpbHdpbmRjc3MvdnVlLWxpYgo) |
| ❌ | [**github.com/sonofmagic/weapp-tailwindcss**](https://github.com/sonofmagic/weapp-tailwindcss/tree/main/website) (`website`) | *n/a* | [Data](./data/github.com/sonofmagic/weapp-tailwindcss/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/soroushchehresa/giant-sur**](https://github.com/soroushchehresa/giant-sur/tree/main/) | 9s | [Data](./data/github.com/soroushchehresa/giant-sur/bWFpbgo/Cg) |
| ❌ | [**github.com/soub4i/s7aba.ma**](https://github.com/soub4i/s7aba.ma/tree/main/) | *n/a* | [Data](./data/github.com/soub4i/s7aba.ma/bWFpbgo/Cg) |
| ✅ | [**github.com/soumyajit4419/Bits-0f-C0de**](https://github.com/soumyajit4419/Bits-0f-C0de/tree/main/) | 9s | [Data](./data/github.com/soumyajit4419/Bits-0f-C0de/bWFpbgo/Cg) |
| ✅ | [**github.com/sozonome/nextarter-tailwind**](https://github.com/sozonome/nextarter-tailwind/tree/main/) | 8s | [Data](./data/github.com/sozonome/nextarter-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/spacedriveapp/spacedrive**](https://github.com/spacedriveapp/spacedrive/tree/main/apps%2Flanding) (`apps/landing`) | 1m 37s | [Data](./data/github.com/spacedriveapp/spacedrive/bWFpbgo/YXBwcy9sYW5kaW5nCg) |
| ✅ | [**github.com/spacedriveapp/spacedrive**](https://github.com/spacedriveapp/spacedrive/tree/main/apps%2Fstorybook) (`apps/storybook`) | 1m 49s | [Data](./data/github.com/spacedriveapp/spacedrive/bWFpbgo/YXBwcy9zdG9yeWJvb2sK) |
| ✅ | [**github.com/spacedriveapp/spacedrive**](https://github.com/spacedriveapp/spacedrive/tree/main/interface) (`interface`) | 1m 54s | [Data](./data/github.com/spacedriveapp/spacedrive/bWFpbgo/aW50ZXJmYWNlCg) |
| ✅ | [**github.com/spacedriveapp/spacedrive**](https://github.com/spacedriveapp/spacedrive/tree/main/packages%2Fui) (`packages/ui`) | 1m 18s | [Data](./data/github.com/spacedriveapp/spacedrive/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/sparors/ussd-simulator**](https://github.com/sparors/ussd-simulator/tree/master/) | 10s | [Data](./data/github.com/sparors/ussd-simulator/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/spatie/freek.dev**](https://github.com/spatie/freek.dev/tree/main/) | 12s | [Data](./data/github.com/spatie/freek.dev/bWFpbgo/Cg) |
| ❌ | [**github.com/specklesystems/speckle-server**](https://github.com/specklesystems/speckle-server/tree/main/packages%2Fdui3) (`packages/dui3`) | *n/a* | [Data](./data/github.com/specklesystems/speckle-server/bWFpbgo/cGFja2FnZXMvZHVpMwo) |
| ❌ | [**github.com/specklesystems/speckle-server**](https://github.com/specklesystems/speckle-server/tree/main/packages%2Ffrontend-2) (`packages/frontend-2`) | *n/a* | [Data](./data/github.com/specklesystems/speckle-server/bWFpbgo/cGFja2FnZXMvZnJvbnRlbmQtMgo) |
| ❌ | [**github.com/specklesystems/speckle-server**](https://github.com/specklesystems/speckle-server/tree/main/packages%2Fui-components) (`packages/ui-components`) | *n/a* | [Data](./data/github.com/specklesystems/speckle-server/bWFpbgo/cGFja2FnZXMvdWktY29tcG9uZW50cwo) |
| ✅ | [**github.com/spences10/scottspence.com**](https://github.com/spences10/scottspence.com/tree/main/) | 7s | [Data](./data/github.com/spences10/scottspence.com/bWFpbgo/Cg) |
| ✅ | [**github.com/spences10/sveltekit-mdsvex-starter-blog**](https://github.com/spences10/sveltekit-mdsvex-starter-blog/tree/main/) | 7s | [Data](./data/github.com/spences10/sveltekit-mdsvex-starter-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/spiritoftime/shadcn-reactjs-starter**](https://github.com/spiritoftime/shadcn-reactjs-starter/tree/main/) | 8s | [Data](./data/github.com/spiritoftime/shadcn-reactjs-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/spliit-app/spliit**](https://github.com/spliit-app/spliit/tree/main/) | 9s | [Data](./data/github.com/spliit-app/spliit/bWFpbgo/Cg) |
| ✅ | [**github.com/sportstimes/f1**](https://github.com/sportstimes/f1/tree/main/) | 6s | [Data](./data/github.com/sportstimes/f1/bWFpbgo/Cg) |
| ✅ | [**github.com/srajankumar/pullquest**](https://github.com/srajankumar/pullquest/tree/main/) | 9s | [Data](./data/github.com/srajankumar/pullquest/bWFpbgo/Cg) |
| ✅ | [**github.com/srmullen/sttv**](https://github.com/srmullen/sttv/tree/main/) | 9s | [Data](./data/github.com/srmullen/sttv/bWFpbgo/Cg) |
| ✅ | [**github.com/ssgsa-us/ssgsa.us**](https://github.com/ssgsa-us/ssgsa.us/tree/main/) | 13s | [Data](./data/github.com/ssgsa-us/ssgsa.us/bWFpbgo/Cg) |
| ✅ | [**github.com/ssteiger/minimal-dao**](https://github.com/ssteiger/minimal-dao/tree/main/packages%2Freact-app) (`packages/react-app`) | 10s | [Data](./data/github.com/ssteiger/minimal-dao/bWFpbgo/cGFja2FnZXMvcmVhY3QtYXBwCg) |
| ✅ | [**github.com/ssteiger/nft-hierarchy-membership-dao**](https://github.com/ssteiger/nft-hierarchy-membership-dao/tree/main/packages%2Freact-app) (`packages/react-app`) | 1m 30s | [Data](./data/github.com/ssteiger/nft-hierarchy-membership-dao/bWFpbgo/cGFja2FnZXMvcmVhY3QtYXBwCg) |
| ❌ | [**github.com/ssteiger/the-dao-hack-simulation**](https://github.com/ssteiger/the-dao-hack-simulation/tree/main/packages%2Freact-app) (`packages/react-app`) | *n/a* | [Data](./data/github.com/ssteiger/the-dao-hack-simulation/bWFpbgo/cGFja2FnZXMvcmVhY3QtYXBwCg) |
| ✅ | [**github.com/stablecoins-wtf/stablecoins.wtf**](https://github.com/stablecoins-wtf/stablecoins.wtf/tree/main/packages%2Ffrontend) (`packages/frontend`) | 26s | [Data](./data/github.com/stablecoins-wtf/stablecoins.wtf/bWFpbgo/cGFja2FnZXMvZnJvbnRlbmQK) |
| ✅ | [**github.com/stackql/stackql-playground**](https://github.com/stackql/stackql-playground/tree/main/) | 6s | [Data](./data/github.com/stackql/stackql-playground/bWFpbgo/Cg) |
| ✅ | [**github.com/stackus/todos**](https://github.com/stackus/todos/tree/main/) | 7s | [Data](./data/github.com/stackus/todos/bWFpbgo/Cg) |
| ❌ | [**github.com/starmut/multiserver**](https://github.com/starmut/multiserver/tree/main/) | *n/a* | [Data](./data/github.com/starmut/multiserver/bWFpbgo/Cg) |
| ✅ | [**github.com/statamic/cms**](https://github.com/statamic/cms/tree/4.x/) | 11s | [Data](./data/github.com/statamic/cms/NC54Cg/Cg) |
| ✅ | [**github.com/statamic/starter-kit-cool-writings**](https://github.com/statamic/starter-kit-cool-writings/tree/master/) | 6s | [Data](./data/github.com/statamic/starter-kit-cool-writings/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/statamic/statamic**](https://github.com/statamic/statamic/tree/4.x/) | 8s | [Data](./data/github.com/statamic/statamic/NC54Cg/Cg) |
| ✅ | [**github.com/statgarten/maps**](https://github.com/statgarten/maps/tree/main/web) (`web`) | 9s | [Data](./data/github.com/statgarten/maps/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/statikbe/laravel-nova-chained-translation-manager**](https://github.com/statikbe/laravel-nova-chained-translation-manager/tree/master/) | 7s | [Data](./data/github.com/statikbe/laravel-nova-chained-translation-manager/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/statsfm/web**](https://github.com/statsfm/web/tree/next/) | 10s | [Data](./data/github.com/statsfm/web/bmV4dAo/Cg) |
| ✅ | [**github.com/stefanfrede/11st-starter-kit**](https://github.com/stefanfrede/11st-starter-kit/tree/main/) | 7s | [Data](./data/github.com/stefanfrede/11st-starter-kit/bWFpbgo/Cg) |
| ✅ | [**github.com/stemrollerapp/stemroller**](https://github.com/stemrollerapp/stemroller/tree/main/) | 9s | [Data](./data/github.com/stemrollerapp/stemroller/bWFpbgo/Cg) |
| ✅ | [**github.com/stephenafamo/bob**](https://github.com/stephenafamo/bob/tree/main/website) (`website`) | 12s | [Data](./data/github.com/stephenafamo/bob/bWFpbgo/d2Vic2l0ZQo) |
| ✅ | [**github.com/stephenkati/Laundry_100**](https://github.com/stephenkati/Laundry_100/tree/dev/) | 7s | [Data](./data/github.com/stephenkati/Laundry_100/ZGV2Cg/Cg) |
| ✅ | [**github.com/stevekinney/accident-counter**](https://github.com/stevekinney/accident-counter/tree/main/) | 16s | [Data](./data/github.com/stevekinney/accident-counter/bWFpbgo/Cg) |
| ✅ | [**github.com/stevekinney/accident-counter-rtk**](https://github.com/stevekinney/accident-counter-rtk/tree/main/) | 7s | [Data](./data/github.com/stevekinney/accident-counter-rtk/bWFpbgo/Cg) |
| ✅ | [**github.com/stevekinney/hottest-takes**](https://github.com/stevekinney/hottest-takes/tree/main/) | 8s | [Data](./data/github.com/stevekinney/hottest-takes/bWFpbgo/Cg) |
| ✅ | [**github.com/stevekinney/inspirational-quotes**](https://github.com/stevekinney/inspirational-quotes/tree/main/) | 7s | [Data](./data/github.com/stevekinney/inspirational-quotes/bWFpbgo/Cg) |
| ✅ | [**github.com/steven-tey/novel**](https://github.com/steven-tey/novel/tree/main/apps%2Fweb) (`apps/web`) | 18s | [Data](./data/github.com/steven-tey/novel/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/steven-tey/precedent**](https://github.com/steven-tey/precedent/tree/main/) | 10s | [Data](./data/github.com/steven-tey/precedent/bWFpbgo/Cg) |
| ✅ | [**github.com/stevenhansel/react-pokedex**](https://github.com/stevenhansel/react-pokedex/tree/master/) | 10s | [Data](./data/github.com/stevenhansel/react-pokedex/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/stimulus-components/stimulus-glow**](https://github.com/stimulus-components/stimulus-glow/tree/main/) | 21s | [Data](./data/github.com/stimulus-components/stimulus-glow/bWFpbgo/Cg) |
| ✅ | [**github.com/stimulus-components/stimulus-prefetch**](https://github.com/stimulus-components/stimulus-prefetch/tree/master/) | 9s | [Data](./data/github.com/stimulus-components/stimulus-prefetch/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/stonega/recos**](https://github.com/stonega/recos/tree/main/) | 7s | [Data](./data/github.com/stonega/recos/bWFpbgo/Cg) |
| ✅ | [**github.com/story-has-you/summariesbooks**](https://github.com/story-has-you/summariesbooks/tree/master/) | 9s | [Data](./data/github.com/story-has-you/summariesbooks/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/strapi-community/website**](https://github.com/strapi-community/website/tree/main/) | 10s | [Data](./data/github.com/strapi-community/website/bWFpbgo/Cg) |
| ✅ | [**github.com/streamdal/streamdal**](https://github.com/streamdal/streamdal/tree/main/apps%2Fdocs) (`apps/docs`) | 29s | [Data](./data/github.com/streamdal/streamdal/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/studio1902/statamic-peak**](https://github.com/studio1902/statamic-peak/tree/main/) | 13s | [Data](./data/github.com/studio1902/statamic-peak/bWFpbgo/Cg) |
| ✅ | [**github.com/sub-t/blog-template**](https://github.com/sub-t/blog-template/tree/main/) | 10s | [Data](./data/github.com/sub-t/blog-template/bWFpbgo/Cg) |
| ❌ | [**github.com/substrate-developer-hub/substrate-docs**](https://github.com/substrate-developer-hub/substrate-docs/tree/main/) | *n/a* | [Data](./data/github.com/substrate-developer-hub/substrate-docs/bWFpbgo/Cg) |
| ✅ | [**github.com/subvisual/secrets.finiam.com**](https://github.com/subvisual/secrets.finiam.com/tree/master/frontend) (`frontend`) | 10s | [Data](./data/github.com/subvisual/secrets.finiam.com/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/subzerocloud/my-way-track**](https://github.com/subzerocloud/my-way-track/tree/main/) | 46s | [Data](./data/github.com/subzerocloud/my-way-track/bWFpbgo/Cg) |
| ✅ | [**github.com/sudeepmahato16/movie-app**](https://github.com/sudeepmahato16/movie-app/tree/main/) | 6s | [Data](./data/github.com/sudeepmahato16/movie-app/bWFpbgo/Cg) |
| ✅ | [**github.com/sumansid/Chrome-Extension-Starter-React-Typescript-Tailwind**](https://github.com/sumansid/Chrome-Extension-Starter-React-Typescript-Tailwind/tree/main/) | 6s | [Data](./data/github.com/sumansid/Chrome-Extension-Starter-React-Typescript-Tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/sumeetdas/Bleeter**](https://github.com/sumeetdas/Bleeter/tree/master/) | 10s | [Data](./data/github.com/sumeetdas/Bleeter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/sunflower-land/sunflower-land**](https://github.com/sunflower-land/sunflower-land/tree/main/) | 16s | [Data](./data/github.com/sunflower-land/sunflower-land/bWFpbgo/Cg) |
| ✅ | [**github.com/sunwu51/notebook**](https://github.com/sunwu51/notebook/tree/master/22.05%2Ftailwind-demo) (`22.05/tailwind-demo`) | 12s | [Data](./data/github.com/sunwu51/notebook/bWFzdGVyCg/MjIuMDUvdGFpbHdpbmQtZGVtbwo) |
| ✅ | [**github.com/sunwu51/notebook**](https://github.com/sunwu51/notebook/tree/master/23.06%2Fantd-demo) (`23.06/antd-demo`) | 28s | [Data](./data/github.com/sunwu51/notebook/bWFzdGVyCg/MjMuMDYvYW50ZC1kZW1vCg) |
| ✅ | [**github.com/sunwu51/notebook**](https://github.com/sunwu51/notebook/tree/master/23.06%2Fshadcn-demo) (`23.06/shadcn-demo`) | 23s | [Data](./data/github.com/sunwu51/notebook/bWFzdGVyCg/MjMuMDYvc2hhZGNuLWRlbW8K) |
| ❌ | [**github.com/supabase/supabase**](https://github.com/supabase/supabase/tree/master/apps%2Fstudio) (`apps/studio`) | *n/a* | [Data](./data/github.com/supabase/supabase/bWFzdGVyCg/YXBwcy9zdHVkaW8K) |
| ✅ | [**github.com/supabase/supabase**](https://github.com/supabase/supabase/tree/master/packages%2Fconfig) (`packages/config`) | 1m 8s | [Data](./data/github.com/supabase/supabase/bWFzdGVyCg/cGFja2FnZXMvY29uZmlnCg) |
| ✅ | [**github.com/supabase/supabase**](https://github.com/supabase/supabase/tree/master/packages%2Fui) (`packages/ui`) | 6m 18s | [Data](./data/github.com/supabase/supabase/bWFzdGVyCg/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/supaboard/app**](https://github.com/supaboard/app/tree/main/) | 4s | [Data](./data/github.com/supaboard/app/bWFpbgo/Cg) |
| ✅ | [**github.com/superwf/mobx-value**](https://github.com/superwf/mobx-value/tree/master/) | 11s | [Data](./data/github.com/superwf/mobx-value/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/surjithctly/astroship**](https://github.com/surjithctly/astroship/tree/main/) | 32s | [Data](./data/github.com/surjithctly/astroship/bWFpbgo/Cg) |
| ✅ | [**github.com/surjithctly/neat-starter**](https://github.com/surjithctly/neat-starter/tree/master/) | 6s | [Data](./data/github.com/surjithctly/neat-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/sushiswap/sushiswap**](https://github.com/sushiswap/sushiswap/tree/master/apps%2Facademy) (`apps/academy`) | 4m 9s | [Data](./data/github.com/sushiswap/sushiswap/bWFzdGVyCg/YXBwcy9hY2FkZW15Cg) |
| ✅ | [**github.com/sushiswap/sushiswap**](https://github.com/sushiswap/sushiswap/tree/master/apps%2Fblog) (`apps/blog`) | 5m 9s | [Data](./data/github.com/sushiswap/sushiswap/bWFzdGVyCg/YXBwcy9ibG9nCg) |
| ✅ | [**github.com/sushiswap/sushiswap**](https://github.com/sushiswap/sushiswap/tree/master/apps%2Fevm) (`apps/evm`) | 4m 36s | [Data](./data/github.com/sushiswap/sushiswap/bWFzdGVyCg/YXBwcy9ldm0K) |
| ✅ | [**github.com/sushiswap/sushiswap**](https://github.com/sushiswap/sushiswap/tree/master/apps%2Fstorybook) (`apps/storybook`) | 2m 59s | [Data](./data/github.com/sushiswap/sushiswap/bWFzdGVyCg/YXBwcy9zdG9yeWJvb2sK) |
| ✅ | [**github.com/suyalcinkaya/onur.dev**](https://github.com/suyalcinkaya/onur.dev/tree/master/) | 10s | [Data](./data/github.com/suyalcinkaya/onur.dev/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/svengau/tailwindcss-hero-patterns**](https://github.com/svengau/tailwindcss-hero-patterns/tree/master/) | 8s | [Data](./data/github.com/svengau/tailwindcss-hero-patterns/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/svenrisse/Twitter-Clone**](https://github.com/svenrisse/Twitter-Clone/tree/main/) | 7s | [Data](./data/github.com/svenrisse/Twitter-Clone/bWFpbgo/Cg) |
| ❌ | [**github.com/swellstores/origin-theme**](https://github.com/swellstores/origin-theme/tree/master/) | *n/a* | [Data](./data/github.com/swellstores/origin-theme/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/swyxio/swyxdotio**](https://github.com/swyxio/swyxdotio/tree/master/) | 7s | [Data](./data/github.com/swyxio/swyxdotio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/swyxio/swyxkit**](https://github.com/swyxio/swyxkit/tree/main/) | 9s | [Data](./data/github.com/swyxio/swyxkit/bWFpbgo/Cg) |
| ✅ | [**github.com/sygeman/dream**](https://github.com/sygeman/dream/tree/main/) | 8s | [Data](./data/github.com/sygeman/dream/bWFpbgo/Cg) |
| ✅ | [**github.com/t3-oss/create-t3-app**](https://github.com/t3-oss/create-t3-app/tree/main/upgrade) (`upgrade`) | 50s | [Data](./data/github.com/t3-oss/create-t3-app/bWFpbgo/dXBncmFkZQo) |
| ✅ | [**github.com/t3-oss/create-t3-app**](https://github.com/t3-oss/create-t3-app/tree/main/www) (`www`) | 58s | [Data](./data/github.com/t3-oss/create-t3-app/bWFpbgo/d3d3Cg) |
| ✅ | [**github.com/tachorzy/Gibraltr**](https://github.com/tachorzy/Gibraltr/tree/main/) | 5s | [Data](./data/github.com/tachorzy/Gibraltr/bWFpbgo/Cg) |
| ✅ | [**github.com/tacticians-academy/teamfight-simulator**](https://github.com/tacticians-academy/teamfight-simulator/tree/main/) | 7s | [Data](./data/github.com/tacticians-academy/teamfight-simulator/bWFpbgo/Cg) |
| ✅ | [**github.com/tads-cnat/ifsolve**](https://github.com/tads-cnat/ifsolve/tree/main/frontend) (`frontend`) | 15s | [Data](./data/github.com/tads-cnat/ifsolve/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/taikoxyz/taiko-mono**](https://github.com/taikoxyz/taiko-mono/tree/main/packages%2Fbridge-ui) (`packages/bridge-ui`) | 1m 19s | [Data](./data/github.com/taikoxyz/taiko-mono/bWFpbgo/cGFja2FnZXMvYnJpZGdlLXVpCg) |
| ✅ | [**github.com/taikoxyz/taiko-mono**](https://github.com/taikoxyz/taiko-mono/tree/main/packages%2Fguardian-prover-health-check-ui) (`packages/guardian-prover-health-check-ui`) | 2m 33s | [Data](./data/github.com/taikoxyz/taiko-mono/bWFpbgo/cGFja2FnZXMvZ3VhcmRpYW4tcHJvdmVyLWhlYWx0aC1jaGVjay11aQo) |
| ✅ | [**github.com/tailscale/golink**](https://github.com/tailscale/golink/tree/main/) | 12s | [Data](./data/github.com/tailscale/golink/bWFpbgo/Cg) |
| ❌ | [**github.com/tailscale/tailscale**](https://github.com/tailscale/tailscale/tree/main/client%2Fweb) (`client/web`) | *n/a* | [Data](./data/github.com/tailscale/tailscale/bWFpbgo/Y2xpZW50L3dlYgo) |
| ✅ | [**github.com/tailscale/tailscale**](https://github.com/tailscale/tailscale/tree/main/cmd%2Ftsconnect) (`cmd/tsconnect`) | 9s | [Data](./data/github.com/tailscale/tailscale/bWFpbgo/Y21kL3RzY29ubmVjdAo) |
| ✅ | [**github.com/tailwindadmin/admin**](https://github.com/tailwindadmin/admin/tree/master/) | 8s | [Data](./data/github.com/tailwindadmin/admin/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tailwindcomponents/cheatsheet**](https://github.com/tailwindcomponents/cheatsheet/tree/main/) | 10s | [Data](./data/github.com/tailwindcomponents/cheatsheet/bWFpbgo/Cg) |
| ✅ | [**github.com/tailwindcomponents/gradient-generator**](https://github.com/tailwindcomponents/gradient-generator/tree/main/) | 9s | [Data](./data/github.com/tailwindcomponents/gradient-generator/bWFpbgo/Cg) |
| ✅ | [**github.com/tailwindlabs/headlessui**](https://github.com/tailwindlabs/headlessui/tree/main/playgrounds%2Freact) (`playgrounds/react`) | 11s | [Data](./data/github.com/tailwindlabs/headlessui/bWFpbgo/cGxheWdyb3VuZHMvcmVhY3QK) |
| ❌ | [**github.com/tailwindlabs/headlessui**](https://github.com/tailwindlabs/headlessui/tree/main/playgrounds%2Fvue) (`playgrounds/vue`) | *n/a* | [Data](./data/github.com/tailwindlabs/headlessui/bWFpbgo/cGxheWdyb3VuZHMvdnVlCg) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Fparcel) (`integrations/parcel`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3BhcmNlbAo) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Fpostcss-cli) (`integrations/postcss-cli`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3Bvc3Rjc3MtY2xpCg) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Frollup) (`integrations/rollup`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3JvbGx1cAo) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Frollup-sass) (`integrations/rollup-sass`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3JvbGx1cC1zYXNzCg) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Ftailwindcss-cli) (`integrations/tailwindcss-cli`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3RhaWx3aW5kY3NzLWNsaQo) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Fvite) (`integrations/vite`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3ZpdGUK) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Fwebpack-4) (`integrations/webpack-4`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3dlYnBhY2stNAo) |
| ❌ | [**github.com/tailwindlabs/tailwindcss**](https://github.com/tailwindlabs/tailwindcss/tree/master/integrations%2Fwebpack-5) (`integrations/webpack-5`) | *n/a* | [Data](./data/github.com/tailwindlabs/tailwindcss/bWFzdGVyCg/aW50ZWdyYXRpb25zL3dlYnBhY2stNQo) |
| ✅ | [**github.com/tal7aouy/vue-board**](https://github.com/tal7aouy/vue-board/tree/main/) | 10s | [Data](./data/github.com/tal7aouy/vue-board/bWFpbgo/Cg) |
| ✅ | [**github.com/talves/astro-shadcn-ui-template**](https://github.com/talves/astro-shadcn-ui-template/tree/main/) | 30s | [Data](./data/github.com/talves/astro-shadcn-ui-template/bWFpbgo/Cg) |
| ✅ | [**github.com/tangly1024/NotionNext**](https://github.com/tangly1024/NotionNext/tree/main/) | 10s | [Data](./data/github.com/tangly1024/NotionNext/bWFpbgo/Cg) |
| ✅ | [**github.com/taoran1401/tools-web**](https://github.com/taoran1401/tools-web/tree/master/) | 7s | [Data](./data/github.com/taoran1401/tools-web/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/tapexyz/tape**](https://github.com/tapexyz/tape/tree/main/apps%2Fembed) (`apps/embed`) | *n/a* | [Data](./data/github.com/tapexyz/tape/bWFpbgo/YXBwcy9lbWJlZAo) |
| ❌ | [**github.com/tapexyz/tape**](https://github.com/tapexyz/tape/tree/main/apps%2Fweb) (`apps/web`) | *n/a* | [Data](./data/github.com/tapexyz/tape/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/taylorbryant/gatsby-starter-tailwind**](https://github.com/taylorbryant/gatsby-starter-tailwind/tree/master/) | 21s | [Data](./data/github.com/taylorbryant/gatsby-starter-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/taylorbryant/next-starter-tailwind**](https://github.com/taylorbryant/next-starter-tailwind/tree/master/) | 9s | [Data](./data/github.com/taylorbryant/next-starter-tailwind/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tbakerx/react-resume-template**](https://github.com/tbakerx/react-resume-template/tree/main/) | 11s | [Data](./data/github.com/tbakerx/react-resume-template/bWFpbgo/Cg) |
| ✅ | [**github.com/teal-finance/quid**](https://github.com/teal-finance/quid/tree/main/docsite) (`docsite`) | 8s | [Data](./data/github.com/teal-finance/quid/bWFpbgo/ZG9jc2l0ZQo) |
| ✅ | [**github.com/teal-finance/quid**](https://github.com/teal-finance/quid/tree/main/ui) (`ui`) | 9s | [Data](./data/github.com/teal-finance/quid/bWFpbgo/dWkK) |
| ✅ | [**github.com/team-watchdog/databank-sri-lanka**](https://github.com/team-watchdog/databank-sri-lanka/tree/main/) | 11s | [Data](./data/github.com/team-watchdog/databank-sri-lanka/bWFpbgo/Cg) |
| ✅ | [**github.com/team4099/FalconScout**](https://github.com/team4099/FalconScout/tree/main/scoutingapp) (`scoutingapp`) | 9s | [Data](./data/github.com/team4099/FalconScout/bWFpbgo/c2NvdXRpbmdhcHAK) |
| ✅ | [**github.com/tech-doctor/uber-clone**](https://github.com/tech-doctor/uber-clone/tree/main/) | 6s | [Data](./data/github.com/tech-doctor/uber-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/technikhil314/next-webrtc**](https://github.com/technikhil314/next-webrtc/tree/master/packages%2Ffrontend) (`packages/frontend`) | 12s | [Data](./data/github.com/technikhil314/next-webrtc/bWFzdGVyCg/cGFja2FnZXMvZnJvbnRlbmQK) |
| ✅ | [**github.com/tecsinapse/design-system**](https://github.com/tecsinapse/design-system/tree/develop/) | 4m 35s | [Data](./data/github.com/tecsinapse/design-system/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/tezignlab/table**](https://github.com/tezignlab/table/tree/main/frontend) (`frontend`) | 11s | [Data](./data/github.com/tezignlab/table/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/tfkhdyt/web-portfolio**](https://github.com/tfkhdyt/web-portfolio/tree/main/) | 8s | [Data](./data/github.com/tfkhdyt/web-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/tguelcan/music**](https://github.com/tguelcan/music/tree/master/) | 9s | [Data](./data/github.com/tguelcan/music/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/thanosoncode/nimaanima**](https://github.com/thanosoncode/nimaanima/tree/master/) | 6s | [Data](./data/github.com/thanosoncode/nimaanima/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/the-rarbg/therarbg**](https://github.com/the-rarbg/therarbg/tree/dev/) | 6s | [Data](./data/github.com/the-rarbg/therarbg/ZGV2Cg/Cg) |
| ✅ | [**github.com/the-web-history/css-timeline**](https://github.com/the-web-history/css-timeline/tree/main/) | 7s | [Data](./data/github.com/the-web-history/css-timeline/bWFpbgo/Cg) |
| ✅ | [**github.com/thebuilder/react-intersection-observer**](https://github.com/thebuilder/react-intersection-observer/tree/main/storybook) (`storybook`) | 33s | [Data](./data/github.com/thebuilder/react-intersection-observer/bWFpbgo/c3Rvcnlib29rCg) |
| ✅ | [**github.com/thecodechaser/portfolio-frontend**](https://github.com/thecodechaser/portfolio-frontend/tree/dev/) | 8s | [Data](./data/github.com/thecodechaser/portfolio-frontend/ZGV2Cg/Cg) |
| ✅ | [**github.com/thecodeholic/laravel-vue-survey**](https://github.com/thecodeholic/laravel-vue-survey/tree/master/vue) (`vue`) | 8s | [Data](./data/github.com/thecodeholic/laravel-vue-survey/bWFzdGVyCg/dnVlCg) |
| ✅ | [**github.com/thedaviddias/erreur-200**](https://github.com/thedaviddias/erreur-200/tree/main/) | 7s | [Data](./data/github.com/thedaviddias/erreur-200/bWFpbgo/Cg) |
| ✅ | [**github.com/thedevdojo/wave**](https://github.com/thedevdojo/wave/tree/main/wave%2Fdocs) (`wave/docs`) | 9s | [Data](./data/github.com/thedevdojo/wave/bWFpbgo/d2F2ZS9kb2NzCg) |
| ✅ | [**github.com/thefullstackgroup/webapp**](https://github.com/thefullstackgroup/webapp/tree/master/) | 11s | [Data](./data/github.com/thefullstackgroup/webapp/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/themefisher/andromeda-light-nextjs**](https://github.com/themefisher/andromeda-light-nextjs/tree/main/) | 9s | [Data](./data/github.com/themefisher/andromeda-light-nextjs/bWFpbgo/Cg) |
| ✅ | [**github.com/themefisher/bookworm-light-astro**](https://github.com/themefisher/bookworm-light-astro/tree/main/) | 24s | [Data](./data/github.com/themefisher/bookworm-light-astro/bWFpbgo/Cg) |
| ✅ | [**github.com/themefisher/bookworm-light-nextjs**](https://github.com/themefisher/bookworm-light-nextjs/tree/main/) | 9s | [Data](./data/github.com/themefisher/bookworm-light-nextjs/bWFpbgo/Cg) |
| ❌ | [**github.com/themesberg/flowbite**](https://github.com/themesberg/flowbite/tree/main/) | *n/a* | [Data](./data/github.com/themesberg/flowbite/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/flowbite-admin-dashboard**](https://github.com/themesberg/flowbite-admin-dashboard/tree/main/) | 15s | [Data](./data/github.com/themesberg/flowbite-admin-dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/flowbite-astro-admin-dashboard**](https://github.com/themesberg/flowbite-astro-admin-dashboard/tree/main/) | 18s | [Data](./data/github.com/themesberg/flowbite-astro-admin-dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/flowbite-react**](https://github.com/themesberg/flowbite-react/tree/main/) | 16s | [Data](./data/github.com/themesberg/flowbite-react/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/flowbite-svelte**](https://github.com/themesberg/flowbite-svelte/tree/main/) | 11s | [Data](./data/github.com/themesberg/flowbite-svelte/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/flowbite-vue**](https://github.com/themesberg/flowbite-vue/tree/main/) | 10s | [Data](./data/github.com/themesberg/flowbite-vue/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/landwind**](https://github.com/themesberg/landwind/tree/main/) | 9s | [Data](./data/github.com/themesberg/landwind/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-angular-starter**](https://github.com/themesberg/tailwind-angular-starter/tree/main/) | 11s | [Data](./data/github.com/themesberg/tailwind-angular-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-astro-starter**](https://github.com/themesberg/tailwind-astro-starter/tree/main/) | 26s | [Data](./data/github.com/themesberg/tailwind-astro-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-blazor-starter**](https://github.com/themesberg/tailwind-blazor-starter/tree/main/BlazorApp) (`BlazorApp`) | 8s | [Data](./data/github.com/themesberg/tailwind-blazor-starter/bWFpbgo/Qmxhem9yQXBwCg) |
| ✅ | [**github.com/themesberg/tailwind-dashboard-windster**](https://github.com/themesberg/tailwind-dashboard-windster/tree/main/) | 10s | [Data](./data/github.com/themesberg/tailwind-dashboard-windster/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-flask-starter**](https://github.com/themesberg/tailwind-flask-starter/tree/main/) | 4s | [Data](./data/github.com/themesberg/tailwind-flask-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-flask-starter**](https://github.com/themesberg/tailwind-flask-starter/tree/main/node_modules%2Fflowbite) (`node_modules/flowbite`) | 9s | [Data](./data/github.com/themesberg/tailwind-flask-starter/bWFpbgo/bm9kZV9tb2R1bGVzL2Zsb3diaXRlCg) |
| ✅ | [**github.com/themesberg/tailwind-landing-page**](https://github.com/themesberg/tailwind-landing-page/tree/main/) | 8s | [Data](./data/github.com/themesberg/tailwind-landing-page/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-nuxt-starter**](https://github.com/themesberg/tailwind-nuxt-starter/tree/main/) | 15s | [Data](./data/github.com/themesberg/tailwind-nuxt-starter/bWFpbgo/Cg) |
| ❌ | [**github.com/themesberg/tailwind-phoenix-starter**](https://github.com/themesberg/tailwind-phoenix-starter/tree/main/assets) (`assets`) | *n/a* | [Data](./data/github.com/themesberg/tailwind-phoenix-starter/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/themesberg/tailwind-typescript-starter**](https://github.com/themesberg/tailwind-typescript-starter/tree/main/) | 8s | [Data](./data/github.com/themesberg/tailwind-typescript-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/themesberg/tailwind-vue-starter**](https://github.com/themesberg/tailwind-vue-starter/tree/main/) | 7s | [Data](./data/github.com/themesberg/tailwind-vue-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/thenameiswiiwin/linear-clone**](https://github.com/thenameiswiiwin/linear-clone/tree/main/) | 9s | [Data](./data/github.com/thenameiswiiwin/linear-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/theodorusclarence/theodorusclarence.com**](https://github.com/theodorusclarence/theodorusclarence.com/tree/main/) | 9s | [Data](./data/github.com/theodorusclarence/theodorusclarence.com/bWFpbgo/Cg) |
| ✅ | [**github.com/theodorusclarence/ts-nextjs-tailwind-starter**](https://github.com/theodorusclarence/ts-nextjs-tailwind-starter/tree/main/) | 7s | [Data](./data/github.com/theodorusclarence/ts-nextjs-tailwind-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/thex3family/make-work-fun**](https://github.com/thex3family/make-work-fun/tree/master/) | 13s | [Data](./data/github.com/thex3family/make-work-fun/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/thijssmudde/react-headless-pagination**](https://github.com/thijssmudde/react-headless-pagination/tree/main/) | 9s | [Data](./data/github.com/thijssmudde/react-headless-pagination/bWFpbgo/Cg) |
| ✅ | [**github.com/thinkingjimmy/Learning-Prompt**](https://github.com/thinkingjimmy/Learning-Prompt/tree/main/) | 18s | [Data](./data/github.com/thinkingjimmy/Learning-Prompt/bWFpbgo/Cg) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/angular-apollo-tailwind) (`angular-apollo-tailwind`) | 13s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/YW5ndWxhci1hcG9sbG8tdGFpbHdpbmQK) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/next-react-query-tailwind) (`next-react-query-tailwind`) | 10s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/bmV4dC1yZWFjdC1xdWVyeS10YWlsd2luZAo) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/nuxt-pinia-tailwind) (`nuxt-pinia-tailwind`) | 24s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/bnV4dC1waW5pYS10YWlsd2luZAo) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/qwik-graphql-tailwind) (`qwik-graphql-tailwind`) | 8s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/cXdpay1ncmFwaHFsLXRhaWx3aW5kCg) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/remix-gql-tailwind) (`remix-gql-tailwind`) | 10s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/cmVtaXgtZ3FsLXRhaWx3aW5kCg) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/solidjs-tailwind) (`solidjs-tailwind`) | 7s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/c29saWRqcy10YWlsd2luZAo) |
| ✅ | [**github.com/thisdot/starter.dev-github-showcases**](https://github.com/thisdot/starter.dev-github-showcases/tree/main/solidstart-tanstackquery-tailwind-modules) (`solidstart-tanstackquery-tailwind-modules`) | 10s | [Data](./data/github.com/thisdot/starter.dev-github-showcases/bWFpbgo/c29saWRzdGFydC10YW5zdGFja3F1ZXJ5LXRhaWx3aW5kLW1vZHVsZXMK) |
| ✅ | [**github.com/thisissteven/monkeytype-clone**](https://github.com/thisissteven/monkeytype-clone/tree/main/app) (`app`) | 9s | [Data](./data/github.com/thisissteven/monkeytype-clone/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/thomasledoux1/website-thomas-astro**](https://github.com/thomasledoux1/website-thomas-astro/tree/main/) | 36s | [Data](./data/github.com/thomasledoux1/website-thomas-astro/bWFpbgo/Cg) |
| ✅ | [**github.com/thtauhid/open-profile**](https://github.com/thtauhid/open-profile/tree/main/) | 7s | [Data](./data/github.com/thtauhid/open-profile/bWFpbgo/Cg) |
| ✅ | [**github.com/thtauhid/terminal-portfolio**](https://github.com/thtauhid/terminal-portfolio/tree/main/) | 6s | [Data](./data/github.com/thtauhid/terminal-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/tierrun/tier-vercel-openai**](https://github.com/tierrun/tier-vercel-openai/tree/main/) | 7s | [Data](./data/github.com/tierrun/tier-vercel-openai/bWFpbgo/Cg) |
| ✅ | [**github.com/tighten/jigsaw-blog-template**](https://github.com/tighten/jigsaw-blog-template/tree/main/) | 6s | [Data](./data/github.com/tighten/jigsaw-blog-template/bWFpbgo/Cg) |
| ✅ | [**github.com/tighten/jigsaw-docs-template**](https://github.com/tighten/jigsaw-docs-template/tree/main/) | 5s | [Data](./data/github.com/tighten/jigsaw-docs-template/bWFpbgo/Cg) |
| ✅ | [**github.com/timfee/meet**](https://github.com/timfee/meet/tree/main/) | 6s | [Data](./data/github.com/timfee/meet/bWFpbgo/Cg) |
| ✅ | [**github.com/timolins/react-hot-toast**](https://github.com/timolins/react-hot-toast/tree/main/site) (`site`) | 6s | [Data](./data/github.com/timolins/react-hot-toast/bWFpbgo/c2l0ZQo) |
| ✅ | [**github.com/tinacms/tina-cloud-starter**](https://github.com/tinacms/tina-cloud-starter/tree/main/) | 9s | [Data](./data/github.com/tinacms/tina-cloud-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/tkssharma/blogs**](https://github.com/tkssharma/blogs/tree/master/svelte-with-auth0) (`svelte-with-auth0`) | 9s | [Data](./data/github.com/tkssharma/blogs/bWFzdGVyCg/c3ZlbHRlLXdpdGgtYXV0aDAK) |
| ✅ | [**github.com/tkssharma/blogs**](https://github.com/tkssharma/blogs/tree/master/svelte-with-tailwind) (`svelte-with-tailwind`) | 10s | [Data](./data/github.com/tkssharma/blogs/bWFzdGVyCg/c3ZlbHRlLXdpdGgtdGFpbHdpbmQK) |
| ✅ | [**github.com/tkssharma/blogs**](https://github.com/tkssharma/blogs/tree/master/sveltekit-with-tailwind) (`sveltekit-with-tailwind`) | 12s | [Data](./data/github.com/tkssharma/blogs/bWFzdGVyCg/c3ZlbHRla2l0LXdpdGgtdGFpbHdpbmQK) |
| ✅ | [**github.com/tobinbradley/timemachine**](https://github.com/tobinbradley/timemachine/tree/master/) | 6s | [Data](./data/github.com/tobinbradley/timemachine/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tobyab/website**](https://github.com/tobyab/website/tree/main/) | 8s | [Data](./data/github.com/tobyab/website/bWFpbgo/Cg) |
| ✅ | [**github.com/tokitouq/coreproject-v3-ui**](https://github.com/tokitouq/coreproject-v3-ui/tree/master/) | 56s | [Data](./data/github.com/tokitouq/coreproject-v3-ui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tomaszbujnowicz/tailwindcss-starter**](https://github.com/tomaszbujnowicz/tailwindcss-starter/tree/master/) | 10s | [Data](./data/github.com/tomaszbujnowicz/tailwindcss-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tomowang/hugo-theme-tailwind**](https://github.com/tomowang/hugo-theme-tailwind/tree/main/) | 7s | [Data](./data/github.com/tomowang/hugo-theme-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/tone-row/flowchart-fun**](https://github.com/tone-row/flowchart-fun/tree/main/app) (`app`) | 1m 5s | [Data](./data/github.com/tone-row/flowchart-fun/bWFpbgo/YXBwCg) |
| ❌ | [**github.com/tone-row/flowchart-fun**](https://github.com/tone-row/flowchart-fun/tree/main/formulaic) (`formulaic`) | *n/a* | [Data](./data/github.com/tone-row/flowchart-fun/bWFpbgo/Zm9ybXVsYWljCg) |
| ✅ | [**github.com/tonyljx/running-leetcode**](https://github.com/tonyljx/running-leetcode/tree/main/) | 6s | [Data](./data/github.com/tonyljx/running-leetcode/bWFpbgo/Cg) |
| ✅ | [**github.com/topheman/nextjs-github-browser**](https://github.com/topheman/nextjs-github-browser/tree/master/) | 9s | [Data](./data/github.com/topheman/nextjs-github-browser/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/traboda/chaya**](https://github.com/traboda/chaya/tree/main/) | 4s | [Data](./data/github.com/traboda/chaya/bWFpbgo/Cg) |
| ✅ | [**github.com/trangj/crappit**](https://github.com/trangj/crappit/tree/master/client) (`client`) | 9s | [Data](./data/github.com/trangj/crappit/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/trashhalo/obsidian-webhooks**](https://github.com/trashhalo/obsidian-webhooks/tree/master/web) (`web`) | 9s | [Data](./data/github.com/trashhalo/obsidian-webhooks/bWFzdGVyCg/d2ViCg) |
| ✅ | [**github.com/trekhleb/trekhleb.github.io**](https://github.com/trekhleb/trekhleb.github.io/tree/master/) | 16s | [Data](./data/github.com/trekhleb/trekhleb.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tremorlabs/tremor**](https://github.com/tremorlabs/tremor/tree/main/) | 7s | [Data](./data/github.com/tremorlabs/tremor/bWFpbgo/Cg) |
| ✅ | [**github.com/trendyminds/craft-reporter**](https://github.com/trendyminds/craft-reporter/tree/craft-4/) | 9s | [Data](./data/github.com/trendyminds/craft-reporter/Y3JhZnQtNAo/Cg) |
| ✅ | [**github.com/trento-project/web**](https://github.com/trento-project/web/tree/main/assets) (`assets`) | 10s | [Data](./data/github.com/trento-project/web/bWFpbgo/YXNzZXRzCg) |
| ✅ | [**github.com/triggerdotdev/apihero**](https://github.com/triggerdotdev/apihero/tree/main/config-packages%2Ftailwind-config) (`config-packages/tailwind-config`) | 1m 56s | [Data](./data/github.com/triggerdotdev/apihero/bWFpbgo/Y29uZmlnLXBhY2thZ2VzL3RhaWx3aW5kLWNvbmZpZwo) |
| ❌ | [**github.com/triggerdotdev/trigger.dev**](https://github.com/triggerdotdev/trigger.dev/tree/main/apps%2Fwebapp) (`apps/webapp`) | *n/a* | [Data](./data/github.com/triggerdotdev/trigger.dev/bWFpbgo/YXBwcy93ZWJhcHAK) |
| ❌ | [**github.com/triggerdotdev/trigger.dev**](https://github.com/triggerdotdev/trigger.dev/tree/main/config-packages%2Ftailwind-config) (`config-packages/tailwind-config`) | *n/a* | [Data](./data/github.com/triggerdotdev/trigger.dev/bWFpbgo/Y29uZmlnLXBhY2thZ2VzL3RhaWx3aW5kLWNvbmZpZwo) |
| ❌ | [**github.com/triggerdotdev/trigger.dev**](https://github.com/triggerdotdev/trigger.dev/tree/main/references%2Fpackage-tester) (`references/package-tester`) | *n/a* | [Data](./data/github.com/triggerdotdev/trigger.dev/bWFpbgo/cmVmZXJlbmNlcy9wYWNrYWdlLXRlc3Rlcgo) |
| ✅ | [**github.com/tropicbliss/wordlesolver**](https://github.com/tropicbliss/wordlesolver/tree/main/) | 7s | [Data](./data/github.com/tropicbliss/wordlesolver/bWFpbgo/Cg) |
| ✅ | [**github.com/trpc/trpc**](https://github.com/trpc/trpc/tree/next/www) (`www`) | 1m 12s | [Data](./data/github.com/trpc/trpc/bmV4dAo/d3d3Cg) |
| ✅ | [**github.com/trungvose/angular-spotify**](https://github.com/trungvose/angular-spotify/tree/main/) | 15s | [Data](./data/github.com/trungvose/angular-spotify/bWFpbgo/Cg) |
| ✅ | [**github.com/trungvose/jira-clone-angular**](https://github.com/trungvose/jira-clone-angular/tree/master/) | 7s | [Data](./data/github.com/trungvose/jira-clone-angular/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tsdataclinic/data-gather**](https://github.com/tsdataclinic/data-gather/tree/develop/) | 11s | [Data](./data/github.com/tsdataclinic/data-gather/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/tsedio/tsed-formio**](https://github.com/tsedio/tsed-formio/tree/master/packages%2Fstorybook) (`packages/storybook`) | 2m 41s | [Data](./data/github.com/tsedio/tsed-formio/bWFzdGVyCg/cGFja2FnZXMvc3Rvcnlib29rCg) |
| ✅ | [**github.com/tsedio/tsed-formio**](https://github.com/tsedio/tsed-formio/tree/master/packages%2Ftailwind) (`packages/tailwind`) | 12s | [Data](./data/github.com/tsedio/tsed-formio/bWFzdGVyCg/cGFja2FnZXMvdGFpbHdpbmQK) |
| ✅ | [**github.com/tsedio/tsed-formio**](https://github.com/tsedio/tsed-formio/tree/master/packages%2Ftailwind-formio) (`packages/tailwind-formio`) | 2m 30s | [Data](./data/github.com/tsedio/tsed-formio/bWFzdGVyCg/cGFja2FnZXMvdGFpbHdpbmQtZm9ybWlvCg) |
| ✅ | [**github.com/tszhong0411/honghong.me**](https://github.com/tszhong0411/honghong.me/tree/main/apps%2Fweb) (`apps/web`) | 39s | [Data](./data/github.com/tszhong0411/honghong.me/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/tszhong0411/honghong.me**](https://github.com/tszhong0411/honghong.me/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 1m 4s | [Data](./data/github.com/tszhong0411/honghong.me/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/tszhong0411/honghong.me**](https://github.com/tszhong0411/honghong.me/tree/main/packages%2Fui) (`packages/ui`) | 1m 10s | [Data](./data/github.com/tszhong0411/honghong.me/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/ttntm/hugo-landing-page**](https://github.com/ttntm/hugo-landing-page/tree/master/) | 8s | [Data](./data/github.com/ttntm/hugo-landing-page/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/ttntm/hugo-tailwind-boilerplate**](https://github.com/ttntm/hugo-tailwind-boilerplate/tree/master/) | 8s | [Data](./data/github.com/ttntm/hugo-tailwind-boilerplate/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tuan3w/linearapp_clone**](https://github.com/tuan3w/linearapp_clone/tree/main/) | 13s | [Data](./data/github.com/tuan3w/linearapp_clone/bWFpbgo/Cg) |
| ✅ | [**github.com/tuanphungcz/buy-me-a-coffee-with-stacks**](https://github.com/tuanphungcz/buy-me-a-coffee-with-stacks/tree/main/) | 8s | [Data](./data/github.com/tuanphungcz/buy-me-a-coffee-with-stacks/bWFpbgo/Cg) |
| ✅ | [**github.com/tuanphungcz/javascriptdevs.com**](https://github.com/tuanphungcz/javascriptdevs.com/tree/main/) | 9s | [Data](./data/github.com/tuanphungcz/javascriptdevs.com/bWFpbgo/Cg) |
| ✅ | [**github.com/tuanphungcz/nextjs-notion-blog-starter**](https://github.com/tuanphungcz/nextjs-notion-blog-starter/tree/main/) | 7s | [Data](./data/github.com/tuanphungcz/nextjs-notion-blog-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/turbo-eth/template-web3-app**](https://github.com/turbo-eth/template-web3-app/tree/integrations/) | 7s | [Data](./data/github.com/turbo-eth/template-web3-app/aW50ZWdyYXRpb25zCg/Cg) |
| ✅ | [**github.com/turbopress/turbopress**](https://github.com/turbopress/turbopress/tree/main/apps%2Fweb) (`apps/web`) | 52s | [Data](./data/github.com/turbopress/turbopress/bWFpbgo/YXBwcy93ZWIK) |
| ✅ | [**github.com/turbot/steampipe**](https://github.com/turbot/steampipe/tree/main/ui%2Fdashboard) (`ui/dashboard`) | 10s | [Data](./data/github.com/turbot/steampipe/bWFpbgo/dWkvZGFzaGJvYXJkCg) |
| ✅ | [**github.com/turso-extended/app-turqw-store**](https://github.com/turso-extended/app-turqw-store/tree/master/) | 9s | [Data](./data/github.com/turso-extended/app-turqw-store/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/tutim-io/tutim**](https://github.com/tutim-io/tutim/tree/main/packages%2Fshadcn-ui) (`packages/shadcn-ui`) | 10s | [Data](./data/github.com/tutim-io/tutim/bWFpbgo/cGFja2FnZXMvc2hhZGNuLXVpCg) |
| ✅ | [**github.com/twanmulder/portfolio**](https://github.com/twanmulder/portfolio/tree/master/) | 9s | [Data](./data/github.com/twanmulder/portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/txpipe/cip25-search-engine**](https://github.com/txpipe/cip25-search-engine/tree/main/web) (`web`) | 9s | [Data](./data/github.com/txpipe/cip25-search-engine/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/u12206050/figma-plugin-graphql**](https://github.com/u12206050/figma-plugin-graphql/tree/master/) | 6s | [Data](./data/github.com/u12206050/figma-plugin-graphql/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/uboar/missli**](https://github.com/uboar/missli/tree/release/) | 7s | [Data](./data/github.com/uboar/missli/cmVsZWFzZQo/Cg) |
| ✅ | [**github.com/udeannn/Hacktoberfest2023**](https://github.com/udeannn/Hacktoberfest2023/tree/main/projects%2FLoginKitTailwind) (`projects/LoginKitTailwind`) | 16s | [Data](./data/github.com/udeannn/Hacktoberfest2023/bWFpbgo/cHJvamVjdHMvTG9naW5LaXRUYWlsd2luZAo) |
| ❌ | [**github.com/udecode/plate**](https://github.com/udecode/plate/tree/main/) | *n/a* | [Data](./data/github.com/udecode/plate/bWFpbgo/Cg) |
| ❌ | [**github.com/udecode/plate**](https://github.com/udecode/plate/tree/main/apps%2Fwww) (`apps/www`) | *n/a* | [Data](./data/github.com/udecode/plate/bWFpbgo/YXBwcy93d3cK) |
| ✅ | [**github.com/udecode/plate**](https://github.com/udecode/plate/tree/main/templates%2Fplate-playground-template) (`templates/plate-playground-template`) | 7s | [Data](./data/github.com/udecode/plate/bWFpbgo/dGVtcGxhdGVzL3BsYXRlLXBsYXlncm91bmQtdGVtcGxhdGUK) |
| ✅ | [**github.com/udecode/plate**](https://github.com/udecode/plate/tree/main/templates%2Fplate-template) (`templates/plate-template`) | 7s | [Data](./data/github.com/udecode/plate/bWFpbgo/dGVtcGxhdGVzL3BsYXRlLXRlbXBsYXRlCg) |
| ✅ | [**github.com/udecode/plate-playground-template**](https://github.com/udecode/plate-playground-template/tree/main/) | 6s | [Data](./data/github.com/udecode/plate-playground-template/bWFpbgo/Cg) |
| ✅ | [**github.com/ueberdosis/tiptap**](https://github.com/ueberdosis/tiptap/tree/main/demos) (`demos`) | 11s | [Data](./data/github.com/ueberdosis/tiptap/bWFpbgo/ZGVtb3MK) |
| ✅ | [**github.com/uilibrary/AatroX-vue**](https://github.com/uilibrary/AatroX-vue/tree/main/) | 10s | [Data](./data/github.com/uilibrary/AatroX-vue/bWFpbgo/Cg) |
| ✅ | [**github.com/umeshmk/Tailwindcss-cheatsheet**](https://github.com/umeshmk/Tailwindcss-cheatsheet/tree/main/) | 6s | [Data](./data/github.com/umeshmk/Tailwindcss-cheatsheet/bWFpbgo/Cg) |
| ✅ | [**github.com/umijs/umi**](https://github.com/umijs/umi/tree/master/packages%2Fplugin-docs) (`packages/plugin-docs`) | 3m 12s | [Data](./data/github.com/umijs/umi/bWFzdGVyCg/cGFja2FnZXMvcGx1Z2luLWRvY3MK) |
| ✅ | [**github.com/umutdeveloper/react-multiselect**](https://github.com/umutdeveloper/react-multiselect/tree/master/) | 9s | [Data](./data/github.com/umutdeveloper/react-multiselect/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/unfolding-io/StarFunnel**](https://github.com/unfolding-io/StarFunnel/tree/master/) | 26s | [Data](./data/github.com/unfolding-io/StarFunnel/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/unfolding-io/nebulix**](https://github.com/unfolding-io/nebulix/tree/main/) | 31s | [Data](./data/github.com/unfolding-io/nebulix/bWFpbgo/Cg) |
| ❌ | [**github.com/unstubbable/mfng**](https://github.com/unstubbable/mfng/tree/main/apps%2Fcloudflare-app) (`apps/cloudflare-app`) | *n/a* | [Data](./data/github.com/unstubbable/mfng/bWFpbgo/YXBwcy9jbG91ZGZsYXJlLWFwcAo) |
| ✅ | [**github.com/unstubbable/mfng**](https://github.com/unstubbable/mfng/tree/main/apps%2Fshared-app) (`apps/shared-app`) | 6s | [Data](./data/github.com/unstubbable/mfng/bWFpbgo/YXBwcy9zaGFyZWQtYXBwCg) |
| ❌ | [**github.com/unstubbable/mfng**](https://github.com/unstubbable/mfng/tree/main/apps%2Fvercel-app) (`apps/vercel-app`) | *n/a* | [Data](./data/github.com/unstubbable/mfng/bWFpbgo/YXBwcy92ZXJjZWwtYXBwCg) |
| ✅ | [**github.com/up2dul/css-shadow-generator**](https://github.com/up2dul/css-shadow-generator/tree/main/) | 9s | [Data](./data/github.com/up2dul/css-shadow-generator/bWFpbgo/Cg) |
| ✅ | [**github.com/upscayl/upscayl**](https://github.com/upscayl/upscayl/tree/main/) | 15s | [Data](./data/github.com/upscayl/upscayl/bWFpbgo/Cg) |
| ✅ | [**github.com/usebruno/bruno**](https://github.com/usebruno/bruno/tree/main/packages%2Fbruno-app) (`packages/bruno-app`) | 9s | [Data](./data/github.com/usebruno/bruno/bWFpbgo/cGFja2FnZXMvYnJ1bm8tYXBwCg) |
| ✅ | [**github.com/usernein/tailwindcss-template-card**](https://github.com/usernein/tailwindcss-template-card/tree/main/) | 11s | [Data](./data/github.com/usernein/tailwindcss-template-card/bWFpbgo/Cg) |
| ✅ | [**github.com/utsavdotpro/starter-rn-expo-tailwind-ts**](https://github.com/utsavdotpro/starter-rn-expo-tailwind-ts/tree/main/) | 12s | [Data](./data/github.com/utsavdotpro/starter-rn-expo-tailwind-ts/bWFpbgo/Cg) |
| ✅ | [**github.com/uuu555552/ptocode**](https://github.com/uuu555552/ptocode/tree/master/frontend) (`frontend`) | 6s | [Data](./data/github.com/uuu555552/ptocode/bWFzdGVyCg/ZnJvbnRlbmQK) |
| ✅ | [**github.com/uzochukwueddie/jobberapp**](https://github.com/uzochukwueddie/jobberapp/tree/main/jobber-client) (`jobber-client`) | 6s | [Data](./data/github.com/uzochukwueddie/jobberapp/bWFpbgo/am9iYmVyLWNsaWVudAo) |
| ✅ | [**github.com/uzzii-21/astro-portfolio**](https://github.com/uzzii-21/astro-portfolio/tree/master/) | 29s | [Data](./data/github.com/uzzii-21/astro-portfolio/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/v0l/zap.stream**](https://github.com/v0l/zap.stream/tree/main/) | *n/a* | [Data](./data/github.com/v0l/zap.stream/bWFpbgo/Cg) |
| ✅ | [**github.com/vapdev/Twiker**](https://github.com/vapdev/Twiker/tree/main/frontend) (`frontend`) | 7s | [Data](./data/github.com/vapdev/Twiker/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/veranikabarel/astro-portfolio**](https://github.com/veranikabarel/astro-portfolio/tree/main/) | 11s | [Data](./data/github.com/veranikabarel/astro-portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F07-tailwind) (`course/07-tailwind`) | 6s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzA3LXRhaWx3aW5kCg) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F08-components) (`course/08-components`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzA4LWNvbXBvbmVudHMK) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F09-data-binding-and%20-event-forwarding) (`course/09-data-binding-and -event-forwarding`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzA5LWRhdGEtYmluZGluZy1hbmQgLWV2ZW50LWZvcndhcmRpbmcK) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F10-context-api) (`course/10-context-api`) | 6s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzEwLWNvbnRleHQtYXBpCg) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F11-stores) (`course/11-stores`) | 6s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzExLXN0b3Jlcwo) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F12-slots) (`course/12-slots`) | 6s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzEyLXNsb3RzCg) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F13-animations-and-transitions) (`course/13-animations-and-transitions`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzEzLWFuaW1hdGlvbnMtYW5kLXRyYW5zaXRpb25zCg) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F14-routing) (`course/14-routing`) | 6s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzE0LXJvdXRpbmcK) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F15-layouts) (`course/15-layouts`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzE1LWxheW91dHMK) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F16-endpoints) (`course/16-endpoints`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzE2LWVuZHBvaW50cwo) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F17-loading) (`course/17-loading`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzE3LWxvYWRpbmcK) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F18-prefetch) (`course/18-prefetch`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzE4LXByZWZldGNoCg) |
| ✅ | [**github.com/vercel/beginner-sveltekit**](https://github.com/vercel/beginner-sveltekit/tree/main/course%2F19-adapters) (`course/19-adapters`) | 7s | [Data](./data/github.com/vercel/beginner-sveltekit/bWFpbgo/Y291cnNlLzE5LWFkYXB0ZXJzCg) |
| ✅ | [**github.com/vercel/nextjs-postgres-auth-starter**](https://github.com/vercel/nextjs-postgres-auth-starter/tree/main/) | 8s | [Data](./data/github.com/vercel/nextjs-postgres-auth-starter/bWFpbgo/Cg) |
| ❌ | [**github.com/vercel/nextjs-postgres-nextauth-tailwindcss-template**](https://github.com/vercel/nextjs-postgres-nextauth-tailwindcss-template/tree/main/) | *n/a* | [Data](./data/github.com/vercel/nextjs-postgres-nextauth-tailwindcss-template/bWFpbgo/Cg) |
| ✅ | [**github.com/vercel/nextjs-subscription-payments**](https://github.com/vercel/nextjs-subscription-payments/tree/main/) | 8s | [Data](./data/github.com/vercel/nextjs-subscription-payments/bWFpbgo/Cg) |
| ✅ | [**github.com/vercel/platforms**](https://github.com/vercel/platforms/tree/main/) | 7s | [Data](./data/github.com/vercel/platforms/bWFpbgo/Cg) |
| ✅ | [**github.com/vercel/turbo**](https://github.com/vercel/turbo/tree/main/docs) (`docs`) | 3m 14s | [Data](./data/github.com/vercel/turbo/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/verifa/website**](https://github.com/verifa/website/tree/main/) | 11s | [Data](./data/github.com/verifa/website/bWFpbgo/Cg) |
| ✅ | [**github.com/viandwi24/nuxt3-awesome-starter**](https://github.com/viandwi24/nuxt3-awesome-starter/tree/v2/) | 1m 22s | [Data](./data/github.com/viandwi24/nuxt3-awesome-starter/djIK/Cg) |
| ✅ | [**github.com/vickonrails/next-starter-peacock**](https://github.com/vickonrails/next-starter-peacock/tree/master/) | 8s | [Data](./data/github.com/vickonrails/next-starter-peacock/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/victorcodess/folio-v1**](https://github.com/victorcodess/folio-v1/tree/main/) | 8s | [Data](./data/github.com/victorcodess/folio-v1/bWFpbgo/Cg) |
| ❌ | [**github.com/victorgarciaesgi/vicflix**](https://github.com/victorgarciaesgi/vicflix/tree/master/) | *n/a* | [Data](./data/github.com/victorgarciaesgi/vicflix/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/vin-e/clerk-astro-demo**](https://github.com/vin-e/clerk-astro-demo/tree/main/) | 20s | [Data](./data/github.com/vin-e/clerk-astro-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/vincecao/react-chrome-extension-template-side-panel**](https://github.com/vincecao/react-chrome-extension-template-side-panel/tree/master/) | 8s | [Data](./data/github.com/vincecao/react-chrome-extension-template-side-panel/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/vinpac/windstitch**](https://github.com/vinpac/windstitch/tree/main/docs) (`docs`) | 9s | [Data](./data/github.com/vinpac/windstitch/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/vipexv/v-staffchat-2.0**](https://github.com/vipexv/v-staffchat-2.0/tree/main/web) (`web`) | 7s | [Data](./data/github.com/vipexv/v-staffchat-2.0/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/visulima/visulima**](https://github.com/visulima/visulima/tree/main/docs) (`docs`) | 7m 31s | [Data](./data/github.com/visulima/visulima/bWFpbgo/ZG9jcwo) |
| ✅ | [**github.com/vitejs/vite**](https://github.com/vitejs/vite/tree/main/playground%2Fbackend-integration) (`playground/backend-integration`) | 50s | [Data](./data/github.com/vitejs/vite/bWFpbgo/cGxheWdyb3VuZC9iYWNrZW5kLWludGVncmF0aW9uCg) |
| ✅ | [**github.com/vitejs/vite**](https://github.com/vitejs/vite/tree/main/playground%2Ftailwind) (`playground/tailwind`) | 37s | [Data](./data/github.com/vitejs/vite/bWFpbgo/cGxheWdyb3VuZC90YWlsd2luZAo) |
| ✅ | [**github.com/vitejs/vite**](https://github.com/vitejs/vite/tree/main/playground%2Ftailwind-sourcemap) (`playground/tailwind-sourcemap`) | 37s | [Data](./data/github.com/vitejs/vite/bWFpbgo/cGxheWdyb3VuZC90YWlsd2luZC1zb3VyY2VtYXAK) |
| ✅ | [**github.com/vituum/vituum**](https://github.com/vituum/vituum/tree/main/playground) (`playground`) | 26s | [Data](./data/github.com/vituum/vituum/bWFpbgo/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/vivasoft-ltd/Envoyer**](https://github.com/vivasoft-ltd/Envoyer/tree/main/envoyer_frontend) (`envoyer_frontend`) | 10s | [Data](./data/github.com/vivasoft-ltd/Envoyer/bWFpbgo/ZW52b3llcl9mcm9udGVuZAo) |
| ✅ | [**github.com/vivek9patel/vivek9patel.github.io**](https://github.com/vivek9patel/vivek9patel.github.io/tree/master/) | 12s | [Data](./data/github.com/vivek9patel/vivek9patel.github.io/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/vivekascoder/vite-react-tailwind-jit**](https://github.com/vivekascoder/vite-react-tailwind-jit/tree/master/) | 9s | [Data](./data/github.com/vivekascoder/vite-react-tailwind-jit/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/vkaelin/LeagueStats**](https://github.com/vkaelin/LeagueStats/tree/master/client) (`client`) | 7s | [Data](./data/github.com/vkaelin/LeagueStats/bWFzdGVyCg/Y2xpZW50Cg) |
| ✅ | [**github.com/vladanpaunovic/dca-crypto**](https://github.com/vladanpaunovic/dca-crypto/tree/main/) | 9s | [Data](./data/github.com/vladanpaunovic/dca-crypto/bWFpbgo/Cg) |
| ✅ | [**github.com/vntechies/blog**](https://github.com/vntechies/blog/tree/main/) | 20s | [Data](./data/github.com/vntechies/blog/bWFpbgo/Cg) |
| ✅ | [**github.com/vnxx/tshirt.designer**](https://github.com/vnxx/tshirt.designer/tree/master/) | 7s | [Data](./data/github.com/vnxx/tshirt.designer/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/voscarmv/issue-finder**](https://github.com/voscarmv/issue-finder/tree/main/) | 9s | [Data](./data/github.com/voscarmv/issue-finder/bWFpbgo/Cg) |
| ❌ | [**github.com/vuejs/devtools**](https://github.com/vuejs/devtools/tree/main/) | *n/a* | [Data](./data/github.com/vuejs/devtools/bWFpbgo/Cg) |
| ✅ | [**github.com/vuongddang/nextjs-tailwindcss-typescript-starter**](https://github.com/vuongddang/nextjs-tailwindcss-typescript-starter/tree/main/) | 8s | [Data](./data/github.com/vuongddang/nextjs-tailwindcss-typescript-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/vvbbnn00/onedrive-index**](https://github.com/vvbbnn00/onedrive-index/tree/main/app) (`app`) | 29s | [Data](./data/github.com/vvbbnn00/onedrive-index/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/vycoder/portfolio**](https://github.com/vycoder/portfolio/tree/master/) | 1m 1s | [Data](./data/github.com/vycoder/portfolio/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/w3bdesign/dfweb-v3**](https://github.com/w3bdesign/dfweb-v3/tree/master/) | 6s | [Data](./data/github.com/w3bdesign/dfweb-v3/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/wafflestudio/csereal-web**](https://github.com/wafflestudio/csereal-web/tree/main/) | 8s | [Data](./data/github.com/wafflestudio/csereal-web/bWFpbgo/Cg) |
| ✅ | [**github.com/wanderer-moe/site**](https://github.com/wanderer-moe/site/tree/main/) | 6s | [Data](./data/github.com/wanderer-moe/site/bWFpbgo/Cg) |
| ✅ | [**github.com/wanoo21/tailwind-astro-starting-blog**](https://github.com/wanoo21/tailwind-astro-starting-blog/tree/main/) | 29s | [Data](./data/github.com/wanoo21/tailwind-astro-starting-blog/bWFpbgo/Cg) |
| ✅ | [**github.com/warmachine028/nike**](https://github.com/warmachine028/nike/tree/main/) | 8s | [Data](./data/github.com/warmachine028/nike/bWFpbgo/Cg) |
| ✅ | [**github.com/warrenday/graphql-network-inspector**](https://github.com/warrenday/graphql-network-inspector/tree/master/) | 10s | [Data](./data/github.com/warrenday/graphql-network-inspector/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/washingtonpost/wpds-ui-kit**](https://github.com/washingtonpost/wpds-ui-kit/tree/main/build.washingtonpost.com) (`build.washingtonpost.com`) | 15s | [Data](./data/github.com/washingtonpost/wpds-ui-kit/bWFpbgo/YnVpbGQud2FzaGluZ3RvbnBvc3QuY29tCg) |
| ❌ | [**github.com/washingtonpost/wpds-ui-kit**](https://github.com/washingtonpost/wpds-ui-kit/tree/main/ui%2Ftailwind-theme) (`ui/tailwind-theme`) | *n/a* | [Data](./data/github.com/washingtonpost/wpds-ui-kit/bWFpbgo/dWkvdGFpbHdpbmQtdGhlbWUK) |
| ❌ | [**github.com/wasp-lang/open-saas**](https://github.com/wasp-lang/open-saas/tree/main/app) (`app`) | *n/a* | [Data](./data/github.com/wasp-lang/open-saas/bWFpbgo/YXBwCg) |
| ✅ | [**github.com/wasp-lang/open-saas**](https://github.com/wasp-lang/open-saas/tree/main/blog) (`blog`) | 35s | [Data](./data/github.com/wasp-lang/open-saas/bWFpbgo/YmxvZwo) |
| ❌ | [**github.com/wasp-lang/wasp**](https://github.com/wasp-lang/wasp/tree/main/web) (`web`) | *n/a* | [Data](./data/github.com/wasp-lang/wasp/bWFpbgo/d2ViCg) |
| ✅ | [**github.com/waveciou/MoneyTracker**](https://github.com/waveciou/MoneyTracker/tree/master/) | 40s | [Data](./data/github.com/waveciou/MoneyTracker/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/weaviate/Verba**](https://github.com/weaviate/Verba/tree/main/frontend) (`frontend`) | 13s | [Data](./data/github.com/weaviate/Verba/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/web3templates/nextly-template**](https://github.com/web3templates/nextly-template/tree/main/) | 13s | [Data](./data/github.com/web3templates/nextly-template/bWFpbgo/Cg) |
| ✅ | [**github.com/web3templates/stablo**](https://github.com/web3templates/stablo/tree/main/) | 10s | [Data](./data/github.com/web3templates/stablo/bWFpbgo/Cg) |
| ✅ | [**github.com/web3templates/stablo-astro**](https://github.com/web3templates/stablo-astro/tree/main/) | 18s | [Data](./data/github.com/web3templates/stablo-astro/bWFpbgo/Cg) |
| ❌ | [**github.com/webb-tools/webb-dapp**](https://github.com/webb-tools/webb-dapp/tree/develop/) | *n/a* | [Data](./data/github.com/webb-tools/webb-dapp/ZGV2ZWxvcAo/Cg) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fastro-blog) (`tutorials/astro-blog`) | 31s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL2FzdHJvLWJsb2cK) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fnextjs-news-app) (`tutorials/nextjs-news-app`) | 17s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL25leHRqcy1uZXdzLWFwcAo) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fnotes-app-with-nextjs) (`tutorials/notes-app-with-nextjs`) | 9s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL25vdGVzLWFwcC13aXRoLW5leHRqcwo) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fnuxt-photo-sharing-app) (`tutorials/nuxt-photo-sharing-app`) | 8s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL251eHQtcGhvdG8tc2hhcmluZy1hcHAK) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Freact-marketingsite) (`tutorials/react-marketingsite`) | 7s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL3JlYWN0LW1hcmtldGluZ3NpdGUK) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fremix-blog) (`tutorials/remix-blog`) | 12s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL3JlbWl4LWJsb2cK) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Ftodo-react-tailwind) (`tutorials/todo-react-tailwind`) | 10s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL3RvZG8tcmVhY3QtdGFpbHdpbmQK) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Ftrello-clone) (`tutorials/trello-clone`) | 10s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL3RyZWxsby1jbG9uZQo) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fvuejs-marketplace) (`tutorials/vuejs-marketplace`) | 9s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL3Z1ZWpzLW1hcmtldHBsYWNlCg) |
| ✅ | [**github.com/webiny/write-with-webiny**](https://github.com/webiny/write-with-webiny/tree/main/tutorials%2Fvuejs-multilingual-blog) (`tutorials/vuejs-multilingual-blog`) | 7s | [Data](./data/github.com/webiny/write-with-webiny/bWFpbgo/dHV0b3JpYWxzL3Z1ZWpzLW11bHRpbGluZ3VhbC1ibG9nCg) |
| ✅ | [**github.com/webprofusion/acme-clients**](https://github.com/webprofusion/acme-clients/tree/main/) | 11s | [Data](./data/github.com/webprofusion/acme-clients/bWFpbgo/Cg) |
| ✅ | [**github.com/webrecorder/express.archiveweb.page**](https://github.com/webrecorder/express.archiveweb.page/tree/main/) | 10s | [Data](./data/github.com/webrecorder/express.archiveweb.page/bWFpbgo/Cg) |
| ✅ | [**github.com/webrecorder/save-tweet-now**](https://github.com/webrecorder/save-tweet-now/tree/main/) | 10s | [Data](./data/github.com/webrecorder/save-tweet-now/bWFpbgo/Cg) |
| ✅ | [**github.com/wei/socialify**](https://github.com/wei/socialify/tree/master/) | 16s | [Data](./data/github.com/wei/socialify/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/welovedevs/react-ultimate-resume**](https://github.com/welovedevs/react-ultimate-resume/tree/develop/doc%2Fwebsite) (`doc/website`) | 5s | [Data](./data/github.com/welovedevs/react-ultimate-resume/ZGV2ZWxvcAo/ZG9jL3dlYnNpdGUK) |
| ❌ | [**github.com/wenerme/wode**](https://github.com/wenerme/wode/tree/main/) | *n/a* | [Data](./data/github.com/wenerme/wode/bWFpbgo/Cg) |
| ❌ | [**github.com/wenerme/wode**](https://github.com/wenerme/wode/tree/main/packages%2Fconsole) (`packages/console`) | *n/a* | [Data](./data/github.com/wenerme/wode/bWFpbgo/cGFja2FnZXMvY29uc29sZQo) |
| ✅ | [**github.com/wesbos/my-tech-stack**](https://github.com/wesbos/my-tech-stack/tree/master/) | 23s | [Data](./data/github.com/wesbos/my-tech-stack/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/wesselvanree/shopify-theme-tailwind**](https://github.com/wesselvanree/shopify-theme-tailwind/tree/main/) | 8s | [Data](./data/github.com/wesselvanree/shopify-theme-tailwind/bWFpbgo/Cg) |
| ✅ | [**github.com/whopio/frosted-ui-legacy**](https://github.com/whopio/frosted-ui-legacy/tree/main/packages%2Ffrosted-ui) (`packages/frosted-ui`) | 37s | [Data](./data/github.com/whopio/frosted-ui-legacy/bWFpbgo/cGFja2FnZXMvZnJvc3RlZC11aQo) |
| ✅ | [**github.com/wigwamapp/wigwam**](https://github.com/wigwamapp/wigwam/tree/dev/) | 1m 58s | [Data](./data/github.com/wigwamapp/wigwam/ZGV2Cg/Cg) |
| ✅ | [**github.com/will-stone/browserosaurus**](https://github.com/will-stone/browserosaurus/tree/main/) | 11s | [Data](./data/github.com/will-stone/browserosaurus/bWFpbgo/Cg) |
| ✅ | [**github.com/will-stone/plastic**](https://github.com/will-stone/plastic/tree/main/) | 28s | [Data](./data/github.com/will-stone/plastic/bWFpbgo/Cg) |
| ✅ | [**github.com/williamlmao/chimera-ui**](https://github.com/williamlmao/chimera-ui/tree/main/apps%2Fdocs) (`apps/docs`) | 28s | [Data](./data/github.com/williamlmao/chimera-ui/bWFpbgo/YXBwcy9kb2NzCg) |
| ✅ | [**github.com/williamlmao/chimera-ui**](https://github.com/williamlmao/chimera-ui/tree/main/packages%2Fcomponents) (`packages/components`) | 58s | [Data](./data/github.com/williamlmao/chimera-ui/bWFpbgo/cGFja2FnZXMvY29tcG9uZW50cwo) |
| ✅ | [**github.com/williamlmao/chimera-ui**](https://github.com/williamlmao/chimera-ui/tree/main/packages%2Ftailwind-config) (`packages/tailwind-config`) | 1m 3s | [Data](./data/github.com/williamlmao/chimera-ui/bWFpbgo/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/wimdeblauwe/modern-frontends-with-htmx-sources**](https://github.com/wimdeblauwe/modern-frontends-with-htmx-sources/tree/main/chapter07b%20-%20inline%20editing) (`chapter07b - inline editing`) | 5s | [Data](./data/github.com/wimdeblauwe/modern-frontends-with-htmx-sources/bWFpbgo/Y2hhcHRlcjA3YiAtIGlubGluZSBlZGl0aW5nCg) |
| ✅ | [**github.com/wimluk/public-lib**](https://github.com/wimluk/public-lib/tree/main/tutorials%2FDraggable%20Notion%20Style%20Text%20Editor%20Blocks%20with%20TipTapProsemirror) (`tutorials/Draggable Notion Style Text Editor Blocks with TipTapProsemirror`) | 7s | [Data](./data/github.com/wimluk/public-lib/bWFpbgo/dHV0b3JpYWxzL0RyYWdnYWJsZSBOb3Rpb24gU3R5bGUgVGV4dCBFZGl0b3IgQmxvY2tzIHdpdGggVGlwVGFwUHJvc2VtaXJyb3IK) |
| ✅ | [**github.com/wimluk/public-lib**](https://github.com/wimluk/public-lib/tree/main/tutorials%2FFull%20Stack%20Next.js%20Notion%20Clone) (`tutorials/Full Stack Next.js Notion Clone`) | 7s | [Data](./data/github.com/wimluk/public-lib/bWFpbgo/dHV0b3JpYWxzL0Z1bGwgU3RhY2sgTmV4dC5qcyBOb3Rpb24gQ2xvbmUK) |
| ✅ | [**github.com/wimluk/public-lib**](https://github.com/wimluk/public-lib/tree/main/tutorials%2FFull%20Stack%20with%20Next.js%2013%20and%20the%20app%20directory) (`tutorials/Full Stack with Next.js 13 and the app directory`) | 7s | [Data](./data/github.com/wimluk/public-lib/bWFpbgo/dHV0b3JpYWxzL0Z1bGwgU3RhY2sgd2l0aCBOZXh0LmpzIDEzIGFuZCB0aGUgYXBwIGRpcmVjdG9yeQo) |
| ✅ | [**github.com/wimluk/public-lib**](https://github.com/wimluk/public-lib/tree/main/tutorials%2FHow%20to%20Stream%20Real-Time%20OpenAI%20API%20Responses) (`tutorials/How to Stream Real-Time OpenAI API Responses`) | 8s | [Data](./data/github.com/wimluk/public-lib/bWFpbgo/dHV0b3JpYWxzL0hvdyB0byBTdHJlYW0gUmVhbC1UaW1lIE9wZW5BSSBBUEkgUmVzcG9uc2VzCg) |
| ✅ | [**github.com/wimluk/public-lib**](https://github.com/wimluk/public-lib/tree/main/tutorials%2FParallel%20and%20Intercepting%20Sign-in%20Page%20in%20Next.js%20with%C2%A0Clerk) (`tutorials/Parallel and Intercepting Sign-in Page in Next.js with Clerk`) | 6s | [Data](./data/github.com/wimluk/public-lib/bWFpbgo/dHV0b3JpYWxzL1BhcmFsbGVsIGFuZCBJbnRlcmNlcHRpbmcgU2lnbi1pbiBQYWdlIGluIE5leHQuanMgd2l0aMKgQ2xlcmsK) |
| ✅ | [**github.com/windmill-labs/windmill**](https://github.com/windmill-labs/windmill/tree/main/frontend) (`frontend`) | 9s | [Data](./data/github.com/windmill-labs/windmill/bWFpbgo/ZnJvbnRlbmQK) |
| ✅ | [**github.com/wingsuit-designsystem/wingsuit**](https://github.com/wingsuit-designsystem/wingsuit/tree/master/docs) (`docs`) | 16s | [Data](./data/github.com/wingsuit-designsystem/wingsuit/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/wingsuit-designsystem/wingsuit**](https://github.com/wingsuit-designsystem/wingsuit/tree/master/starter-kits%2Ftailwind) (`starter-kits/tailwind`) | 11s | [Data](./data/github.com/wingsuit-designsystem/wingsuit/bWFzdGVyCg/c3RhcnRlci1raXRzL3RhaWx3aW5kCg) |
| ✅ | [**github.com/wingsuit-designsystem/wingsuit**](https://github.com/wingsuit-designsystem/wingsuit/tree/master/starter-kits%2Fvanilla-tailwind) (`starter-kits/vanilla-tailwind`) | 11s | [Data](./data/github.com/wingsuit-designsystem/wingsuit/bWFzdGVyCg/c3RhcnRlci1raXRzL3ZhbmlsbGEtdGFpbHdpbmQK) |
| ❌ | [**github.com/wireui/old-docs**](https://github.com/wireui/old-docs/tree/main/) | *n/a* | [Data](./data/github.com/wireui/old-docs/bWFpbgo/Cg) |
| ✅ | [**github.com/wireui/wireui**](https://github.com/wireui/wireui/tree/main/) | 12s | [Data](./data/github.com/wireui/wireui/bWFpbgo/Cg) |
| ✅ | [**github.com/withastro/astro.build**](https://github.com/withastro/astro.build/tree/main/) | 47s | [Data](./data/github.com/withastro/astro.build/bWFpbgo/Cg) |
| ✅ | [**github.com/wlmchen/learn.theyei**](https://github.com/wlmchen/learn.theyei/tree/main/) | 12s | [Data](./data/github.com/wlmchen/learn.theyei/bWFpbgo/Cg) |
| ✅ | [**github.com/wmalarski/qwik-music-reviews**](https://github.com/wmalarski/qwik-music-reviews/tree/master/) | 8s | [Data](./data/github.com/wmalarski/qwik-music-reviews/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/wmalarski/qwik-trpc-supabase**](https://github.com/wmalarski/qwik-trpc-supabase/tree/master/) | 5s | [Data](./data/github.com/wmalarski/qwik-trpc-supabase/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/woai3c/vite-vue3-eslint-stylelint-demo**](https://github.com/woai3c/vite-vue3-eslint-stylelint-demo/tree/main/) | 8s | [Data](./data/github.com/woai3c/vite-vue3-eslint-stylelint-demo/bWFpbgo/Cg) |
| ✅ | [**github.com/wobsoriano/codeplayground**](https://github.com/wobsoriano/codeplayground/tree/master/) | 7s | [Data](./data/github.com/wobsoriano/codeplayground/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/wobsoriano/v-dashboard**](https://github.com/wobsoriano/v-dashboard/tree/master/) | 11s | [Data](./data/github.com/wobsoriano/v-dashboard/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/woile/willy-theme**](https://github.com/woile/willy-theme/tree/master/) | 6s | [Data](./data/github.com/woile/willy-theme/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/wonmor/ElectronVisualized**](https://github.com/wonmor/ElectronVisualized/tree/main/client) (`client`) | 16s | [Data](./data/github.com/wonmor/ElectronVisualized/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/workos/workos-explore**](https://github.com/workos/workos-explore/tree/master/) | 8s | [Data](./data/github.com/workos/workos-explore/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/worldcoin/world-id-cloud-template**](https://github.com/worldcoin/world-id-cloud-template/tree/main/) | 7s | [Data](./data/github.com/worldcoin/world-id-cloud-template/bWFpbgo/Cg) |
| ✅ | [**github.com/worldcoin/world-id-sign-in**](https://github.com/worldcoin/world-id-sign-in/tree/main/) | 6s | [Data](./data/github.com/worldcoin/world-id-sign-in/bWFpbgo/Cg) |
| ✅ | [**github.com/worpet-bildet/portal**](https://github.com/worpet-bildet/portal/tree/develop/ui) (`ui`) | 8s | [Data](./data/github.com/worpet-bildet/portal/ZGV2ZWxvcAo/dWkK) |
| ✅ | [**github.com/wp-strap/wp-vite-starter**](https://github.com/wp-strap/wp-vite-starter/tree/main/) | 9s | [Data](./data/github.com/wp-strap/wp-vite-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/wtchnm/Vitamin**](https://github.com/wtchnm/Vitamin/tree/main/) | 7s | [Data](./data/github.com/wtchnm/Vitamin/bWFpbgo/Cg) |
| ❌ | [**github.com/wundergraph/cosmo**](https://github.com/wundergraph/cosmo/tree/main/keycloak%2Ftheme) (`keycloak/theme`) | *n/a* | [Data](./data/github.com/wundergraph/cosmo/bWFpbgo/a2V5Y2xvYWsvdGhlbWUK) |
| ❌ | [**github.com/wundergraph/cosmo**](https://github.com/wundergraph/cosmo/tree/main/playground) (`playground`) | *n/a* | [Data](./data/github.com/wundergraph/cosmo/bWFpbgo/cGxheWdyb3VuZAo) |
| ✅ | [**github.com/wundergraph/cosmo**](https://github.com/wundergraph/cosmo/tree/main/studio) (`studio`) | 38s | [Data](./data/github.com/wundergraph/cosmo/bWFpbgo/c3R1ZGlvCg) |
| ✅ | [**github.com/xavimondev/contentcreators**](https://github.com/xavimondev/contentcreators/tree/main/) | 8s | [Data](./data/github.com/xavimondev/contentcreators/bWFpbgo/Cg) |
| ✅ | [**github.com/xdevguild/nextjs-dapp-template**](https://github.com/xdevguild/nextjs-dapp-template/tree/main/) | 8s | [Data](./data/github.com/xdevguild/nextjs-dapp-template/bWFpbgo/Cg) |
| ✅ | [**github.com/xiaochen0517/chat-gpt-box**](https://github.com/xiaochen0517/chat-gpt-box/tree/master/) | 8s | [Data](./data/github.com/xiaochen0517/chat-gpt-box/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/xiaogenban1993/xiaogenban1993.github.io**](https://github.com/xiaogenban1993/xiaogenban1993.github.io/tree/master/22.05%2Ftailwind-demo) (`22.05/tailwind-demo`) | 16s | [Data](./data/github.com/xiaogenban1993/xiaogenban1993.github.io/bWFzdGVyCg/MjIuMDUvdGFpbHdpbmQtZGVtbwo) |
| ✅ | [**github.com/xiaogenban1993/xiaogenban1993.github.io**](https://github.com/xiaogenban1993/xiaogenban1993.github.io/tree/master/23.06%2Fantd-demo) (`23.06/antd-demo`) | 29s | [Data](./data/github.com/xiaogenban1993/xiaogenban1993.github.io/bWFzdGVyCg/MjMuMDYvYW50ZC1kZW1vCg) |
| ✅ | [**github.com/xiaogenban1993/xiaogenban1993.github.io**](https://github.com/xiaogenban1993/xiaogenban1993.github.io/tree/master/23.06%2Fshadcn-demo) (`23.06/shadcn-demo`) | 23s | [Data](./data/github.com/xiaogenban1993/xiaogenban1993.github.io/bWFzdGVyCg/MjMuMDYvc2hhZGNuLWRlbW8K) |
| ✅ | [**github.com/xiaoqing-tan/vue3dashboard**](https://github.com/xiaoqing-tan/vue3dashboard/tree/main/) | 8s | [Data](./data/github.com/xiaoqing-tan/vue3dashboard/bWFpbgo/Cg) |
| ✅ | [**github.com/xiaoxigua-1/terminal**](https://github.com/xiaoxigua-1/terminal/tree/main/) | 8s | [Data](./data/github.com/xiaoxigua-1/terminal/bWFpbgo/Cg) |
| ✅ | [**github.com/xitanggg/open-resume**](https://github.com/xitanggg/open-resume/tree/main/) | 12s | [Data](./data/github.com/xitanggg/open-resume/bWFpbgo/Cg) |
| ✅ | [**github.com/xlzy520/baby-life**](https://github.com/xlzy520/baby-life/tree/master/) | 8s | [Data](./data/github.com/xlzy520/baby-life/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/xlzy520/uniapp-tailwind-uview-starter**](https://github.com/xlzy520/uniapp-tailwind-uview-starter/tree/master/) | 7s | [Data](./data/github.com/xlzy520/uniapp-tailwind-uview-starter/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/xtendui/xtendui**](https://github.com/xtendui/xtendui/tree/master/) | 49s | [Data](./data/github.com/xtendui/xtendui/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/xwchris/blog**](https://github.com/xwchris/blog/tree/main/) | 8s | [Data](./data/github.com/xwchris/blog/bWFpbgo/Cg) |
| ✅ | [**github.com/y-essine/vite-fullstack**](https://github.com/y-essine/vite-fullstack/tree/main/) | 8s | [Data](./data/github.com/y-essine/vite-fullstack/bWFpbgo/Cg) |
| ✅ | [**github.com/yacineboudebouz/mouhami-dz**](https://github.com/yacineboudebouz/mouhami-dz/tree/master/) | 5s | [Data](./data/github.com/yacineboudebouz/mouhami-dz/bWFzdGVyCg/Cg) |
| ❌ | [**github.com/yangshun/tech-interview-handbook**](https://github.com/yangshun/tech-interview-handbook/tree/main/packages%2Fui) (`packages/ui`) | *n/a* | [Data](./data/github.com/yangshun/tech-interview-handbook/bWFpbgo/cGFja2FnZXMvdWkK) |
| ✅ | [**github.com/ycs77/ycsplayer**](https://github.com/ycs77/ycsplayer/tree/main/) | 10s | [Data](./data/github.com/ycs77/ycsplayer/bWFpbgo/Cg) |
| ✅ | [**github.com/yearn/web-lib**](https://github.com/yearn/web-lib/tree/main/) | 2m 15s | [Data](./data/github.com/yearn/web-lib/bWFpbgo/Cg) |
| ✅ | [**github.com/yehezkielgunawan/yehezgun-v3**](https://github.com/yehezkielgunawan/yehezgun-v3/tree/main/) | 12s | [Data](./data/github.com/yehezkielgunawan/yehezgun-v3/bWFpbgo/Cg) |
| ✅ | [**github.com/yenilikci/react-native-deliveroo-clone**](https://github.com/yenilikci/react-native-deliveroo-clone/tree/main/) | 6s | [Data](./data/github.com/yenilikci/react-native-deliveroo-clone/bWFpbgo/Cg) |
| ✅ | [**github.com/yesmore/inke**](https://github.com/yesmore/inke/tree/web/apps%2Fweb) (`apps/web`) | 51s | [Data](./data/github.com/yesmore/inke/d2ViCg/YXBwcy93ZWIK) |
| ✅ | [**github.com/yesmore/inke**](https://github.com/yesmore/inke/tree/web/packages%2Fcore) (`packages/core`) | 54s | [Data](./data/github.com/yesmore/inke/d2ViCg/cGFja2FnZXMvY29yZQo) |
| ✅ | [**github.com/yesmore/inke**](https://github.com/yesmore/inke/tree/web/packages%2Ftailwind-config) (`packages/tailwind-config`) | 39s | [Data](./data/github.com/yesmore/inke/d2ViCg/cGFja2FnZXMvdGFpbHdpbmQtY29uZmlnCg) |
| ✅ | [**github.com/yext/pages**](https://github.com/yext/pages/tree/main/playground%2Flocations-site) (`playground/locations-site`) | 43s | [Data](./data/github.com/yext/pages/bWFpbgo/cGxheWdyb3VuZC9sb2NhdGlvbnMtc2l0ZQo) |
| ✅ | [**github.com/yext/pages**](https://github.com/yext/pages/tree/main/playground%2Fmultibrand-site) (`playground/multibrand-site`) | 39s | [Data](./data/github.com/yext/pages/bWFpbgo/cGxheWdyb3VuZC9tdWx0aWJyYW5kLXNpdGUK) |
| ✅ | [**github.com/yhaefliger/YATAS**](https://github.com/yhaefliger/YATAS/tree/main/) | 8s | [Data](./data/github.com/yhaefliger/YATAS/bWFpbgo/Cg) |
| ✅ | [**github.com/yinkakun/leah-gardner-storefront**](https://github.com/yinkakun/leah-gardner-storefront/tree/master/) | 7s | [Data](./data/github.com/yinkakun/leah-gardner-storefront/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/yinkakun/medusa-starter-monster**](https://github.com/yinkakun/medusa-starter-monster/tree/master/storefront) (`storefront`) | 7s | [Data](./data/github.com/yinkakun/medusa-starter-monster/bWFzdGVyCg/c3RvcmVmcm9udAo) |
| ✅ | [**github.com/yoanbernabeu/LinkTreeFreeClone**](https://github.com/yoanbernabeu/LinkTreeFreeClone/tree/main/) | 8s | [Data](./data/github.com/yoanbernabeu/LinkTreeFreeClone/bWFpbgo/Cg) |
| ✅ | [**github.com/yossTheDev/karbonized**](https://github.com/yossTheDev/karbonized/tree/master/) | 11s | [Data](./data/github.com/yossTheDev/karbonized/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/yougotwill/session-website**](https://github.com/yougotwill/session-website/tree/main/) | 1m 26s | [Data](./data/github.com/yougotwill/session-website/bWFpbgo/Cg) |
| ✅ | [**github.com/your-papa/obsidian-Smart2Brain**](https://github.com/your-papa/obsidian-Smart2Brain/tree/main/) | 6s | [Data](./data/github.com/your-papa/obsidian-Smart2Brain/bWFpbgo/Cg) |
| ✅ | [**github.com/yqz0203/rookie-gpt**](https://github.com/yqz0203/rookie-gpt/tree/main/apps%2Fclient) (`apps/client`) | 1m 16s | [Data](./data/github.com/yqz0203/rookie-gpt/bWFpbgo/YXBwcy9jbGllbnQK) |
| ✅ | [**github.com/yrnana/yrnana.github.io**](https://github.com/yrnana/yrnana.github.io/tree/main/) | 23s | [Data](./data/github.com/yrnana/yrnana.github.io/bWFpbgo/Cg) |
| ✅ | [**github.com/ysj151215/big-sur-dock**](https://github.com/ysj151215/big-sur-dock/tree/main/) | 7s | [Data](./data/github.com/ysj151215/big-sur-dock/bWFpbgo/Cg) |
| ✅ | [**github.com/ysj151215/scrollex-heading**](https://github.com/ysj151215/scrollex-heading/tree/main/) | 7s | [Data](./data/github.com/ysj151215/scrollex-heading/bWFpbgo/Cg) |
| ✅ | [**github.com/yungifez/skuul**](https://github.com/yungifez/skuul/tree/main/) | 8s | [Data](./data/github.com/yungifez/skuul/bWFpbgo/Cg) |
| ✅ | [**github.com/yuxxeun/basement**](https://github.com/yuxxeun/basement/tree/main/) | 12s | [Data](./data/github.com/yuxxeun/basement/bWFpbgo/Cg) |
| ✅ | [**github.com/ywanzhou/vue3-template**](https://github.com/ywanzhou/vue3-template/tree/master/) | 7s | [Data](./data/github.com/ywanzhou/vue3-template/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zaarheed/transvribe**](https://github.com/zaarheed/transvribe/tree/master/) | 6s | [Data](./data/github.com/zaarheed/transvribe/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zagreus-co/ZedAdmin**](https://github.com/zagreus-co/ZedAdmin/tree/master/) | 8s | [Data](./data/github.com/zagreus-co/ZedAdmin/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zaidsidd360/sneakers**](https://github.com/zaidsidd360/sneakers/tree/master/) | 5s | [Data](./data/github.com/zaidsidd360/sneakers/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zainfathoni/kelas.rumahberbagi.com**](https://github.com/zainfathoni/kelas.rumahberbagi.com/tree/main/) | 10s | [Data](./data/github.com/zainfathoni/kelas.rumahberbagi.com/bWFpbgo/Cg) |
| ✅ | [**github.com/zakaton/repsetter**](https://github.com/zakaton/repsetter/tree/main/) | 8s | [Data](./data/github.com/zakaton/repsetter/bWFpbgo/Cg) |
| ✅ | [**github.com/zakiego/nik-reader**](https://github.com/zakiego/nik-reader/tree/main/) | 7s | [Data](./data/github.com/zakiego/nik-reader/bWFpbgo/Cg) |
| ✅ | [**github.com/zekenie/web-reducer**](https://github.com/zekenie/web-reducer/tree/main/client) (`client`) | 13s | [Data](./data/github.com/zekenie/web-reducer/bWFpbgo/Y2xpZW50Cg) |
| ✅ | [**github.com/zerostaticthemes/jekyll-atlantic-theme**](https://github.com/zerostaticthemes/jekyll-atlantic-theme/tree/master/) | 10s | [Data](./data/github.com/zerostaticthemes/jekyll-atlantic-theme/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zhanglun/lettura**](https://github.com/zhanglun/lettura/tree/master/) | 11s | [Data](./data/github.com/zhanglun/lettura/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zhanglun/lettura**](https://github.com/zhanglun/lettura/tree/master/docs) (`docs`) | 29s | [Data](./data/github.com/zhanglun/lettura/bWFzdGVyCg/ZG9jcwo) |
| ✅ | [**github.com/zhermin/LeetNode**](https://github.com/zhermin/LeetNode/tree/main/leetnode) (`leetnode`) | 8s | [Data](./data/github.com/zhermin/LeetNode/bWFpbgo/bGVldG5vZGUK) |
| ✅ | [**github.com/zhixiangyao/vite-react-ts-antd-starter**](https://github.com/zhixiangyao/vite-react-ts-antd-starter/tree/main/) | 9s | [Data](./data/github.com/zhixiangyao/vite-react-ts-antd-starter/bWFpbgo/Cg) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/01) (`01`) | 7s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDEK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/02) (`02`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDIK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/03) (`03`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDMK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/04) (`04`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDQK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/05) (`05`) | 7s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDUK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/06) (`06`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDYK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/07) (`07`) | 7s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDcK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/08) (`08`) | 7s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDgK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/09) (`09`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MDkK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/10) (`10`) | 7s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTAK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/11) (`11`) | 10s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTEK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/12) (`12`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTIK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/13) (`13`) | 8s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTMK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/14) (`14`) | 5s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTQK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/15) (`15`) | 5s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTUK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/16) (`16`) | 5s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTYK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/17) (`17`) | 7s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTcK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/18) (`18`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTgK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/19) (`19`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MTkK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/20) (`20`) | 6s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MjAK) |
| ✅ | [**github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners**](https://github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/tree/main/21) (`21`) | 9s | [Data](./data/github.com/zhixingxiaoke/react-hands-on-tutorial-for-beginners/bWFpbgo/MjEK) |
| ✅ | [**github.com/ziageek/smartvcard**](https://github.com/ziageek/smartvcard/tree/main/) | 15s | [Data](./data/github.com/ziageek/smartvcard/bWFpbgo/Cg) |
| ✅ | [**github.com/zidhuss/muscat-tech.org**](https://github.com/zidhuss/muscat-tech.org/tree/main/) | 9s | [Data](./data/github.com/zidhuss/muscat-tech.org/bWFpbgo/Cg) |
| ✅ | [**github.com/zitadel/typescript**](https://github.com/zitadel/typescript/tree/main/apps%2Flogin) (`apps/login`) | 34s | [Data](./data/github.com/zitadel/typescript/bWFpbgo/YXBwcy9sb2dpbgo) |
| ❌ | [**github.com/zitadel/typescript**](https://github.com/zitadel/typescript/tree/main/packages%2Fzitadel-next) (`packages/zitadel-next`) | *n/a* | [Data](./data/github.com/zitadel/typescript/bWFpbgo/cGFja2FnZXMveml0YWRlbC1uZXh0Cg) |
| ❌ | [**github.com/zitadel/typescript**](https://github.com/zitadel/typescript/tree/main/packages%2Fzitadel-react) (`packages/zitadel-react`) | *n/a* | [Data](./data/github.com/zitadel/typescript/bWFpbgo/cGFja2FnZXMveml0YWRlbC1yZWFjdAo) |
| ❌ | [**github.com/zitadel/typescript**](https://github.com/zitadel/typescript/tree/main/packages%2Fzitadel-tailwind-config) (`packages/zitadel-tailwind-config`) | *n/a* | [Data](./data/github.com/zitadel/typescript/bWFpbgo/cGFja2FnZXMveml0YWRlbC10YWlsd2luZC1jb25maWcK) |
| ✅ | [**github.com/zjc17/cook.zhangjc.tech**](https://github.com/zjc17/cook.zhangjc.tech/tree/master/) | 6s | [Data](./data/github.com/zjc17/cook.zhangjc.tech/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zolplay-cn/website**](https://github.com/zolplay-cn/website/tree/dev/) | 7s | [Data](./data/github.com/zolplay-cn/website/ZGV2Cg/Cg) |
| ✅ | [**github.com/zthxxx/react-dev-inspector**](https://github.com/zthxxx/react-dev-inspector/tree/dev/docs) (`docs`) | 2m 38s | [Data](./data/github.com/zthxxx/react-dev-inspector/ZGV2Cg/ZG9jcwo) |
| ✅ | [**github.com/zthxxx/react-dev-inspector**](https://github.com/zthxxx/react-dev-inspector/tree/dev/packages%2Finspector) (`packages/inspector`) | 1m 36s | [Data](./data/github.com/zthxxx/react-dev-inspector/ZGV2Cg/cGFja2FnZXMvaW5zcGVjdG9yCg) |
| ✅ | [**github.com/zukreindev/portfolio**](https://github.com/zukreindev/portfolio/tree/main/) | 10s | [Data](./data/github.com/zukreindev/portfolio/bWFpbgo/Cg) |
| ✅ | [**github.com/zuramai/doorprize-winner**](https://github.com/zuramai/doorprize-winner/tree/master/) | 7s | [Data](./data/github.com/zuramai/doorprize-winner/bWFzdGVyCg/Cg) |
| ✅ | [**github.com/zuramai/nuxewind**](https://github.com/zuramai/nuxewind/tree/main/) | 16s | [Data](./data/github.com/zuramai/nuxewind/bWFpbgo/Cg) |
| ✅ | [**github.com/zwgnr/BaseLayer**](https://github.com/zwgnr/BaseLayer/tree/main/web) (`web`) | 21s | [Data](./data/github.com/zwgnr/BaseLayer/bWFpbgo/d2ViCg) |