A modern React application built with Vite for the StellarAid platform.
- Node.js (v18 or higher)
- npm or yarn
npm installnpm run devThe application will be available at http://localhost:5173
npm run buildnpm run previewsrc/
├── assets/ # Static assets (images, fonts, etc.)
├── components/ # Reusable components
│ ├── common/ # Common UI components
│ └── layout/ # Layout components
├── features/ # Feature-based modules
├── hooks/ # Custom React hooks
├── pages/ # Page components
├── routes/ # Routing configuration
├── services/ # API services and external integrations
├── store/ # State management
└── utils/ # Utility functions and helpers
- React - UI library
- Vite - Build tool and dev server
- ESLint - Code linting
This project uses ESLint for code quality. Run linting with:
npm run lintPlease follow the established folder structure and coding conventions when contributing to this project.