Consolidated frontend components for Infinity X One Systems.
This repository contains all production-grade frontend components and applications for the Infinity X One Systems ecosystem.
frontend-system/
βββ admin-dashboard/ # Administrative control plane UI
βββ frontend/ # Main frontend application
βββ infinity-matrix/ # ADMINOS Control Plane (primary UI system)
βββ package.json # Workspace dependencies
βββ README.md # This file
Administrative dashboard for system management and monitoring.
Purpose: Provide admin-level access to system controls, user management, and operational monitoring.
Key Features:
- System health monitoring
- User management interface
- Configuration management
- Analytics dashboard
Setup:
cd admin-dashboard
npm install
npm run devPrimary frontend application for end-user interactions.
Purpose: Deliver user-facing features, workflows, and integrations.
Key Features:
- User authentication and profile management
- Workspace integration (Gmail, Calendar, Drive, Sheets)
- Real estate and loan intelligence interfaces
- Lead management and CRM
- Document synchronization
Setup:
cd frontend
npm install
npm run devADMINOS Control Plane - The authoritative UI system for Infinity X One Systems.
Purpose: Central command and control interface for all system operations, agent management, and autonomous workflows.
Key Features:
- Vision Cortex multi-agent interface
- Real-time agent coordination
- Workflow orchestration
- System analytics and monitoring
- Agent blueprint management
- Live documentation
Architecture:
- React 19 + TypeScript
- Tailwind CSS 4 for styling
- tRPC for type-safe API communication
- Real-time updates via WebSocket
- Multi-agent chat interface
- Vision Cortex Council Mode
Setup:
cd infinity-matrix
npm install
npm run devKey Files:
src/pages/AdminPage.tsx- Main admin interfacesrc/components/AdminSidebar.tsx- Navigationsrc/components/AdminVisionCortex.tsx- Vision Cortex interfacesrc/components/AdminAgents.tsx- Agent managementsrc/components/AdminLiveData.tsx- Real-time monitoring
- Node.js 18+
- npm or pnpm
- Git
# Clone the repository
git clone https://github.com/InfinityXOneSystems/frontend-system.git
cd frontend-system
# Install workspace dependencies
npm install
# Or use pnpm for faster installation
pnpm installEach component has its own development server:
# Run admin-dashboard
cd admin-dashboard && npm run dev
# Run frontend
cd frontend && npm run dev
# Run infinity-matrix (ADMINOS)
cd infinity-matrix && npm run dev# Build all components
npm run build
# Build specific component
cd infinity-matrix && npm run buildUser Interface (Frontend)
β
tRPC Client
β
API Gateway (Cloud Run)
β
Orchestrator (Manus Core)
β
Agents (50+ specialists)
β
Data Layer (Cloud SQL, Firestore, BigQuery)
All components use Tailwind CSS 4 with a unified design system:
- Color Palette: Electric blue/cyan primary, with supporting colors
- Typography: System fonts with responsive scaling
- Spacing: 4px base unit for consistent layout
- Components: shadcn/ui for consistent UI patterns
- Global State: React Context + tRPC
- Real-time State: Firestore listeners
- Form State: React Hook Form
- Server State: tRPC Query/Mutation hooks
- Gmail integration for communication
- Calendar for scheduling
- Drive for document storage
- Sheets for data management
- Cloud Run for API hosting
- Cloud SQL for persistent data
- Firestore for real-time coordination
- BigQuery for analytics
- Vertex AI for LLM inference
- Continuous deployment via GitHub Actions
- Issue tracking and project management
- Code review workflows
- Automated testing
# Run tests
npm run test
# Run tests with coverage
npm run test:coverage
# Run E2E tests
npm run test:e2enpm run deploy:stagingnpm run deploy:productionComprehensive documentation is available in each component:
admin-dashboard/README.md- Admin dashboard documentationfrontend/README.md- Frontend application documentationinfinity-matrix/README.md- ADMINOS Control Plane documentationinfinity-matrix/ARCHITECTURE.md- System architectureinfinity-matrix/IMPLEMENTATION.md- Implementation details
- Code Splitting: Each route is code-split for faster initial load
- Image Optimization: Images are optimized and served via CDN
- Caching: Aggressive caching for static assets
- Lazy Loading: Components loaded on-demand
- Tree Shaking: Unused code removed in production builds
- Lighthouse Score: 90+
- Core Web Vitals: All green
- Bundle Size: <500KB (gzipped)
- Time to Interactive: <2 seconds
- OAuth 2.0 via Manus platform
- Session management with secure cookies
- CSRF protection
- XSS prevention
- All data encrypted in transit (TLS 1.3)
- All data encrypted at rest
- User data isolation
- Audit logging for all operations
- GDPR compliant
- SOC 2 ready
- HIPAA compatible
- PCI DSS ready
- TypeScript for type safety
- ESLint for code quality
- Prettier for formatting
- Conventional commits for version control
- Create a feature branch
- Make your changes
- Run tests and linting
- Submit PR with clear description
- Wait for review and approval
- Merge to main
feat: add new feature
fix: fix bug
docs: update documentation
style: formatting changes
refactor: code restructuring
test: add tests
chore: maintenance tasks
# Kill process on port 3000
lsof -ti:3000 | xargs kill -9
# Or use different port
PORT=3001 npm run dev# Clear node_modules and reinstall
rm -rf node_modules package-lock.json
npm install# Clear build cache
rm -rf .next dist build
# Rebuild
npm run buildFor issues, questions, or contributions:
- Check existing issues on GitHub
- Create a new issue with detailed description
- Include reproduction steps
- Attach relevant logs or screenshots
All components are part of Infinity X One Systems and are subject to the organization's licensing terms.
| Component | Status | Last Updated |
|---|---|---|
| Admin Dashboard | β Operational | 2026-01-12 |
| Frontend Application | β Operational | 2026-01-12 |
| Infinity Matrix (ADMINOS) | β Operational | 2026-01-12 |
| Google Workspace Integration | β Operational | 2026-01-12 |
| Cloud Integration | β Operational | 2026-01-12 |
Remember: This is the consolidated frontend system. Each component is production-ready and follows Infinity X One Systems standards.
For questions about the system architecture, see the canonical repository: https://github.com/InfinityXOneSystems/canonical