diff --git a/README.md b/README.md
index 4e7fe3a..3c0ff3e 100644
--- a/README.md
+++ b/README.md
@@ -1,342 +1,389 @@
-# JavaScript & TypeScript Mastery Platform
+
+

-### A comprehensive, production-grade learning platform for mastering modern JavaScript and TypeScript
+
-[](https://nextjs.org/)
-[](https://react.dev/)
-[](https://www.typescriptlang.org/)
-[](https://tailwindcss.com/)
+
+ A LeetCode-style coding platform with 155+ challenges across 19 categories
+
-
+
+ Quick Start •
+ Features •
+ Categories •
+ Tech Stack •
+ Contributing
+
-[Live Demo](#) · [Report Bug](https://github.com/davidagustin/coding-tricks-practice/issues) · [Request Feature](https://github.com/davidagustin/coding-tricks-practice/issues)
+
-
+
+
+
+
+
+
+
-

+
+
+
+
+
+155+Problems |
+19Categories |
+40+Test Files |
+140K+Lines of Code |
+
+
-
+
-## Overview
+---
-A **LeetCode-style** interactive coding platform built from the ground up, featuring **155+ hands-on coding challenges** across **19 categories**. This full-stack application demonstrates expertise in modern web development, software architecture, and best practices.
+
-
+## What is This?
-
+A **production-grade learning platform** for mastering JavaScript and TypeScript through hands-on coding challenges. Think LeetCode, but focused entirely on JS/TS fundamentals, patterns, and best practices.
-| Metric | Value |
-|--------|-------|
-| **Total Problems** | 155+ |
-| **Categories** | 19 |
-| **Test Files** | 40+ |
-| **Lines of Code** | 140,000+ |
-| **Components** | 11 |
+Built with the latest technologies and following modern development practices, this platform offers:
-
+- **Real coding environment** powered by Monaco Editor (the engine behind VS Code)
+- **Instant feedback** with automated test runners and detailed error reporting
+- **Progress tracking** to monitor your learning journey
+- **Beautiful UI** with dark/light themes and responsive design
+
+
+
+---
-
+
-## Key Features
+## Features
-|
+ |
-### Interactive Code Editor
-- Monaco Editor (VS Code engine) integration
-- Syntax highlighting for JavaScript & TypeScript
+### Code Editor
+
+- Monaco Editor integration (VS Code engine)
+- Syntax highlighting for JS & TS
- Real-time code validation
-- Auto-completion and IntelliSense
+- Auto-completion & IntelliSense
+- Multiple themes support
|
-
+ |
+
+### Test Runner
-### Automated Test Runner
-- Sandboxed code execution environment
-- Comprehensive test case validation
-- Detailed error reporting with stack traces
-- Performance timing for solutions
+- Sandboxed code execution
+- Comprehensive test validation
+- Detailed error reporting
+- Stack traces for debugging
+- Performance timing
|
-|
+ |
-### Modern UI/UX
-- Responsive design for all devices
-- Dark/Light theme with system preference detection
-- Smooth animations and transitions
-- Accessibility-first approach (WCAG compliant)
+### Progress System
+
+- Persistent localStorage progress
+- Streak tracking
+- Filter by difficulty/category
+- Completion statistics
+- Real-time dashboard
|
-
+ |
+
+### Modern UI/UX
-### Progress Tracking
-- Persistent progress with localStorage
-- Streak tracking system
-- Filter by difficulty, category, and completion status
-- Real-time statistics dashboard
+- Responsive design
+- Dark/Light themes
+- System preference detection
+- Smooth animations
+- WCAG 2.1 AA accessible
|
-
+
-## Tech Stack
+---
-
+
-### Frontend
-
-
-
-
+## Quick Start
-### Editor & Testing
-
-
-
+```bash
+# Clone the repository
+git clone https://github.com/davidagustin/coding-tricks-practice.git
-### Tooling
-
-
-
+# Navigate to project
+cd coding-tricks-practice
-
+# Install dependencies
+npm install
-
+# Start development server
+npm run dev
+```
-## Architecture Highlights
+Open **[http://localhost:3000](http://localhost:3000)** and start coding!
-```
-┌─────────────────────────────────────────────────────────────────┐
-│ Next.js App Router │
-├─────────────────────────────────────────────────────────────────┤
-│ ┌─────────────┐ ┌─────────────┐ ┌─────────────────────────┐ │
-│ │ Pages │ │ Components │ │ Context Providers │ │
-│ │ ───────── │ │ ───────── │ │ ───────────────── │ │
-│ │ • Home │ │ • CodeEditor│ │ • ThemeProvider │ │
-│ │ • Problems │ │ • TestResults│ │ • ProgressProvider │ │
-│ │ • [id] │ │ • Navbar │ │ │ │
-│ └─────────────┘ └─────────────┘ └─────────────────────────┘ │
-├─────────────────────────────────────────────────────────────────┤
-│ ┌─────────────────────────────────────────────────────────────┐│
-│ │ Test Runner Engine ││
-│ │ • Sandboxed execution • Security validation ││
-│ │ • Deep equality checks • Timeout protection ││
-│ └─────────────────────────────────────────────────────────────┘│
-├─────────────────────────────────────────────────────────────────┤
-│ ┌─────────────────────────────────────────────────────────────┐│
-│ │ Problem Library (155+ Problems) ││
-│ │ 19 Categories • 3 Difficulty Levels • Test Cases ││
-│ └─────────────────────────────────────────────────────────────┘│
-└─────────────────────────────────────────────────────────────────┘
-```
+
+
+
+All Available Scripts
-
+
+
+| Command | Description |
+|---------|-------------|
+| `npm run dev` | Start development server |
+| `npm run build` | Build for production |
+| `npm run start` | Start production server |
+| `npm test` | Run all tests |
+| `npm run test:watch` | Run tests in watch mode |
+| `npm run test:coverage` | Generate coverage report |
+| `npm run lint` | Run ESLint |
+| `npm run format` | Format with Biome |
+
+
+
+
+
+---
+
+
## Problem Categories
-| Category | Description |
-|----------|-------------|
-| **JavaScript Basics** | Fundamentals, operators, control flow |
-| **Array Methods** | map, filter, reduce, find, and more |
-| **Async/Promises** | Promises, async/await, error handling |
-| **TypeScript Basics** | Types, interfaces, generics |
-| **TypeScript Advanced** | Conditional types, mapped types, infer |
-| **Functional Programming** | Currying, composition, memoization |
-| **ES6+ Features** | Destructuring, spread, template literals |
-| **Design Patterns** | Factory, singleton, observer, decorator |
-| **Data Structures** | Sets, Maps, WeakMap, WeakSet |
-| **Algorithms** | Sorting, searching, recursion |
-| **DOM/Browser** | Events, storage, intersection observer |
-| **Performance** | Optimization, debounce, throttle |
-| **Testing Patterns** | Mocks, stubs, TDD practices |
-| **Error Handling** | Try/catch, custom errors, boundaries |
-| **Regular Expressions** | Patterns, lookahead, validation |
-| **String Methods** | Manipulation, formatting, parsing |
-| **Object Methods** | Keys, values, entries, freeze |
-| **Date & Time** | Formatting, timezones, calculations |
-| **Numbers & Math** | Precision, formatting, BigInt |
+| | Category | Topics |
+|:---:|----------|--------|
+| 📘 | **JavaScript Basics** | Fundamentals, operators, control flow |
+| 📦 | **Array Methods** | map, filter, reduce, find, every, some |
+| ⏳ | **Async/Promises** | Promises, async/await, error handling |
+| 🔷 | **TypeScript Basics** | Types, interfaces, generics |
+| 🔶 | **TypeScript Advanced** | Conditional types, mapped types, infer |
+| 🧮 | **Functional Programming** | Currying, composition, memoization |
+| ✨ | **ES6+ Features** | Destructuring, spread, modules |
+| 🏗️ | **Design Patterns** | Factory, singleton, observer, decorator |
+| 🗃️ | **Data Structures** | Sets, Maps, WeakMap, WeakSet |
+| 🔍 | **Algorithms** | Sorting, searching, recursion |
+| 🌐 | **DOM/Browser** | Events, storage, observers |
+| ⚡ | **Performance** | Optimization, debounce, throttle |
+| 🧪 | **Testing Patterns** | Mocks, stubs, TDD practices |
+| 🚨 | **Error Handling** | Try/catch, custom errors |
+| 🔤 | **Regular Expressions** | Patterns, lookahead, validation |
+| 📝 | **String Methods** | Manipulation, formatting, parsing |
+| 🔑 | **Object Methods** | Keys, values, entries, freeze |
+| 📅 | **Date & Time** | Formatting, timezones, calculations |
+| 🔢 | **Numbers & Math** | Precision, formatting, BigInt |
-
+
-## Getting Started
+---
-### Prerequisites
+
-- Node.js 18+
-- npm or yarn
+## Tech Stack
-### Installation
+
-```bash
-# Clone the repository
-git clone https://github.com/davidagustin/coding-tricks-practice.git
+### Core Framework
+
+
+
-# Navigate to the project
-cd coding-tricks-practice
+### Development Tools
+
+
+
-# Install dependencies
-npm install
+
-# Start development server
-npm run dev
-```
+
-Open [http://localhost:3000](http://localhost:3000) to view the application.
+
+Full Technology Breakdown
-
+
-## Scripts
+**Frontend**
+- Next.js 16 (App Router)
+- React 19
+- TypeScript 5.9
+- Tailwind CSS 4.0
-```bash
-# Development
-npm run dev # Start development server
-npm run build # Build for production
-npm run start # Start production server
-
-# Testing
-npm test # Run all tests
-npm run test:watch # Run tests in watch mode
-npm run test:coverage # Run tests with coverage report
-
-# Code Quality
-npm run lint # Run ESLint
-npm run format # Format code with Biome
-```
+**Editor**
+- Monaco Editor
+- Custom syntax highlighting
+- IntelliSense integration
-
+**Testing**
+- Jest
+- React Testing Library
+- 40+ test suites
-## Project Structure
+**Quality**
+- ESLint
+- Biome
+- Husky pre-commit hooks
+
+**Deployment**
+- Vercel optimized
+- Edge-ready
+- Global CDN
+
+
+
+
+
+---
+
+
+
+## Architecture
```
+coding-tricks-practice/
├── app/ # Next.js App Router
-│ ├── page.tsx # Home page with statistics
-│ ├── layout.tsx # Root layout with providers
-│ ├── error.tsx # Global error boundary
-│ ├── loading.tsx # Loading skeleton
-│ ├── not-found.tsx # 404 page
-│ └── problems/
-│ ├── page.tsx # Problems list with filtering
-│ ├── error.tsx # Problems error boundary
-│ └── [id]/
-│ ├── page.tsx # Problem detail page
-│ ├── error.tsx # Problem error boundary
-│ └── not-found.tsx # Problem not found page
+│ ├── page.tsx # Home with stats
+│ ├── layout.tsx # Root layout
+│ ├── problems/
+│ │ ├── page.tsx # Problems list
+│ │ └── [id]/page.tsx # Problem detail
│
-├── components/ # React components
-│ ├── CodeEditor.tsx # Monaco Editor wrapper
-│ ├── TestResults.tsx # Test results display
-│ ├── ProblemDescription.tsx # Problem info with tabs
-│ ├── ProblemTable.tsx # Problems list table
-│ ├── FilterSidebar.tsx # Filter controls
-│ ├── Navbar.tsx # Navigation with settings
-│ ├── ThemeToggle.tsx # Dark/light mode toggle
-│ ├── ThemeProvider.tsx # Theme context provider
-│ ├── ProgressProvider.tsx # Progress tracking context
-│ └── ErrorBoundary.tsx # Error boundary component
+├── components/ # React Components
+│ ├── CodeEditor.tsx # Monaco wrapper
+│ ├── TestResults.tsx # Test display
+│ ├── ProblemTable.tsx # Problems list
+│ ├── FilterSidebar.tsx # Filters
+│ ├── Navbar.tsx # Navigation
+│ └── ThemeToggle.tsx # Theme switcher
│
-├── lib/ # Core libraries
-│ ├── problems/ # 155+ problem definitions
-│ │ ├── index.ts # Problem exports
-│ │ └── [problem-name].ts # Individual problems
-│ ├── problems.ts # Problem utilities
-│ ├── test-runner.ts # Sandboxed test execution
+├── lib/ # Core Logic
+│ ├── problems/ # 155+ problems
+│ ├── test-runner.ts # Sandboxed execution
│ └── constants.ts # App constants
│
-├── __tests__/ # Test suites (40+ files)
-│ ├── app/ # Page tests
-│ ├── components/ # Component tests
-│ └── lib/ # Library tests
-│
-└── stories/ # Storybook stories
+└── __tests__/ # Test Suites
+ ├── app/ # Page tests
+ ├── components/ # Component tests
+ └── lib/ # Library tests
```
-
+
-## Security Features
+---
-- **Sandboxed Code Execution**: User code runs in an isolated environment
-- **Input Sanitization**: All inputs validated and sanitized with DOMPurify
-- **Function Name Validation**: Prevents code injection attacks
-- **Timeout Protection**: Prevents infinite loops and resource exhaustion
-- **XSS Prevention**: Content Security Policy compliant
+
-
+## Security & Performance
-## Performance Optimizations
+
+
+
-- **React.memo** for expensive component renders
-- **useCallback/useMemo** for stable references
-- **Code splitting** with Next.js dynamic imports
-- **Optimized re-renders** with proper key management
-- **Efficient filtering** with single-pass algorithms
-- **Lazy loading** for Monaco Editor
+### Security
-
+- Sandboxed code execution
+- Input sanitization (DOMPurify)
+- Function name validation
+- Timeout protection
+- XSS prevention (CSP compliant)
-## Accessibility
+ |
+
+
+### Performance
+
+- React.memo optimization
+- useCallback/useMemo hooks
+- Dynamic code splitting
+- Lazy-loaded Monaco Editor
+- Efficient filtering algorithms
-- **WCAG 2.1 AA** compliant
-- Keyboard navigation support
-- Screen reader announcements with `aria-live`
-- Proper focus management
-- Color contrast ratios maintained
-- Semantic HTML structure
+ |
+
+
-
+
+
+---
+
+
## Deployment
-### Vercel (Recommended)
+
[](https://vercel.com/new/clone?repository-url=https://github.com/davidagustin/coding-tricks-practice)
-The application is optimized for Vercel's edge network with:
-- Automatic HTTPS
-- Global CDN distribution
-- Zero-config deployment
-- Preview deployments for PRs
+
-
+Optimized for Vercel with automatic HTTPS, global CDN, and zero-config deployment.
+
+
+
+---
+
+
## Contributing
-Contributions are welcome! Please feel free to submit a Pull Request.
+Contributions are welcome! Here's how you can help:
+
+1. **Fork** the repository
+2. **Create** your feature branch (`git checkout -b feature/amazing-feature`)
+3. **Commit** your changes (`git commit -m 'Add amazing feature'`)
+4. **Push** to the branch (`git push origin feature/amazing-feature`)
+5. **Open** a Pull Request
-1. Fork the repository
-2. Create your feature branch (`git checkout -b feature/AmazingFeature`)
-3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)
-4. Push to the branch (`git push origin feature/AmazingFeature`)
-5. Open a Pull Request
+
-
+---
+
+
## License
-This project is open source and available under the [MIT License](LICENSE).
+This project is open source under the [MIT License](LICENSE).
-
+
---
-**Built with passion for learning and teaching JavaScript & TypeScript**
+
+
+**Built for developers who want to master JavaScript & TypeScript**
+
+
+
+
+
+
-
+
+
-[](https://github.com/davidagustin/coding-tricks-practice)
+