Bridge is a mentorship platform built to connect job seekers and recent graduates with established professionals for one-on-one career support. Users can browse mentors, book sessions for services like career advice, interview prep, resume reviews, and networking guidance, then leave reviews based on their experience.
The platform was built with React, Vite, and Tailwind CSS on the frontend, with Supabase handling authentication and the Postgres database. The app is deployed on Vercel, with automatic deployment from the main branch.
bridge/
├── client/ # React + Vite + Tailwind CSS
└── server/ # Express.js API
- Node.js 18+
- npm 9+
# Install client dependencies
cd client && npm install
# Install server dependencies
cd ../server && npm installcp server/.env.example server/.env
# Fill in the values in server/.envClient (http://localhost:5173):
cd client && npm run devServer (http://localhost:3000):
cd server && npm run dev