A modern web application for connecting skilled developers and forming teams for projects.
- React - Frontend library
- TypeScript - Type safety and better developer experience
- Tailwind CSS - Utility-first CSS framework for styling
- React Router - Client-side routing
- Vite - Build tool and development server
- 🔐 User Authentication (Login/Signup)
- 👤 User Profiles with GitHub Integration
- 🤝 Team Management
- Create Teams
- Join Teams
- View Team Details
- Team Member Management
- 🔍 Team Discovery
- 📱 Responsive Design
- 🎨 Modern UI with Tailwind CSS
- Node.js (v14 or higher)
- npm or yarn
- Clone the repository
git clone <repository-url>
cd frontend- Install dependencies
npm install
# or
yarn install- Create a
.envfile in the root directory and add:
VITE_URL_BACKEND=http://localhost:4000- Start the development server
npm run dev
# or
yarn devThe application will be available at http://localhost:5173
frontend/
├── src/
│ ├── components/ # Reusable UI components
│ │ └── dashboard/ # Dashboard-specific components
│ ├── context/ # React Context providers
│ ├── pages/ # Page components
│ ├── assets/ # Static assets
│ ├── App.tsx # Root component
│ └── main.tsx # Entry point
├── public/ # Public assets
└── package.json # Dependencies and scripts
npm run dev- Start development servernpm run build- Build for productionnpm run preview- Preview production buildnpm run lint- Run ESLintnpm run type-check- Run TypeScript type checking
VITE_URL_BACKEND- Backend API URL
- Fork the repository
- Create a new branch
- Make your changes
- Submit a pull request