phase-3 - web [WIP] - #7
Open
yeaight7 wants to merge 19 commits into
Open
Conversation
Base automatically changed from
chore/phase-2/product-and-validation-improvements
to
main
June 7, 2026 23:55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This pull request introduces a new React + TypeScript + Vite frontend application in the
webdirectory. It sets up a modern development environment with ESLint, TypeScript, and Vite, and implements the initial version of an "Awesome AI Devtools" catalog app. The app loads tool and category data from YAML files, provides search and filter functionality, and displays the results in a responsive, styled UI.The most important changes are:
Frontend Application Setup:
Added a new
webdirectory with a Vite-based React + TypeScript project, including configuration files for TypeScript (tsconfig.json,tsconfig.app.json,tsconfig.node.json), Vite (vite.config.ts), and ESLint (eslint.config.js). Also included is a starterindex.htmlfile. [1] [2] [3] [4] [5] [6] [7]Added a detailed
README.mdinweb/with setup instructions, ESLint configuration guidance, and information about React and Vite plugins.Core Application Implementation:
Implemented the main React app in
src/App.tsx, which loads tool and category data from YAML, provides search and multi-faceted filtering (by category, source model, deployment), and renders a responsive catalog grid of reviewed tools.Set up the application entry point in
src/main.tsx, rendering theAppcomponent with React 19 and strict mode.Styling and User Interface:
Added comprehensive global and component CSS in
src/index.cssfor a modern, glassmorphism-inspired UI, including layout, sidebar, catalog grid, tool cards, and responsive design.Added a sample component style file
src/App.css(possibly a placeholder for future styles).