| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A React-based SAT practice application with 276 authentic SAT math questions sourced from College Board materials.
satProjectV2/ ├── sat-practice-app-1/ # Main application │ ├── frontend/ # React frontend application │ │ ├── src/ │ │ │ ├── components/ # React components │ │ │ ├── data/ # Question data (mathQuestions.ts, satQuestions.ts) │ │ │ ├── pages/ # Page components │ │ │ ├── styles/ # Typography and styling │ │ │ └── utils/ # Utility functions │ │ ├── public/ # Static assets │ │ └── package.json # Dependencies │ └── archive/ # Archived files and documentation ├── bigSatMath.pdf # Source material ├── bigSatverbal.pdf # Source material └── MathQuestionSat.txt # Extracted questions text
Navigate to the frontend directory:
cd sat-practice-app-1/frontendInstall dependencies:
npm installStart the development server:
npm startOpen http://localhost:3000 to view the app.
The app uses two main data files:
Questions include:
Each question follows this interface:
interface Question {
id: string;
text: string;
category: 'math' | 'verbal';
domain: string;
skill: string;
difficulty: 'easy' | 'medium' | 'hard';
options: string[];
correctAnswer: string;
visual?: string;
visualElement?: VisualElement;
source: string;
}Historical files, documentation, and unused code are stored in the archive/ directory:
This project contains SAT questions sourced from College Board materials for educational purposes.
| Back | FazBrowse Home | New Git URL |