diff --git a/BLUEHOST_VPS_DEPLOYMENT_GUIDE.md b/BLUEHOST_VPS_DEPLOYMENT_GUIDE.md index 7b396cf..6affbbf 100644 --- a/BLUEHOST_VPS_DEPLOYMENT_GUIDE.md +++ b/BLUEHOST_VPS_DEPLOYMENT_GUIDE.md @@ -143,9 +143,7 @@ cd freshers-hub --- -## Step 6: Build & Run Component 2 (Spring Boot Java Backend - Port 8085) -1. **Build the Spring Boot `.jar` file:** ```bash cd /var/www/freshers-hub/backend chmod +x mvnw diff --git a/src/pages/Campus/Campus.tsx b/src/pages/Campus/Campus.tsx index 94710e3..4f7ff5d 100644 --- a/src/pages/Campus/Campus.tsx +++ b/src/pages/Campus/Campus.tsx @@ -44,6 +44,8 @@ const LOCATION_SPOTS: LocationSpot[] = [ { name: 'Campus Centre', x: 67.0, y: 23.0, category: 'Admin / Facility', desc: 'Student Activity & Administrative Center', area: 'North East' }, { name: 'Hut', x: 70.0, y: 37.0, category: 'Amenity', desc: 'Student Discussion & Rest Area', area: 'Central East' }, { name: 'Homi Jehangir Bhabha Block', x: 87.0, y: 24.0, category: 'A Block', desc: 'Science & Physics Research Block', area: 'East Wing' }, + { name: 'Boys Mess', x: 87.0, y: 17.5, category: 'Hostel / Mess', desc: 'Ground Floor Dining Hall for Men (Homi Bhabha Block)', area: 'East Wing' }, + { name: 'Staff Mess', x: 87.0, y: 30.5, category: 'Amenity', desc: 'First Floor Dining Hall for Faculty & Staff (Homi Bhabha Block)', area: 'East Wing' }, { name: 'C Block', x: 87.0, y: 38.0, category: 'C Block', desc: 'Labs, Classrooms & Staff Rooms', area: 'East Wing' }, { name: 'Alan Turing Block', x: 77.0, y: 53.0, category: 'Lab / Academic', desc: 'Computer Science & AI Labs', area: 'East Wing' }, { name: 'Arcade', x: 35.0, y: 57.0, category: 'Amenity', desc: 'Student Hub & Stores', area: 'Central South' }, @@ -60,8 +62,8 @@ const CATEGORY_MAP_SPOTS: Record = { dept: ['Homi Jehangir Bhabha Block', 'Nikola Tesla Block', 'C Block', 'Steve Jobs Block', 'Alan Turing Block', 'Green Building'], library: ['Green Building'], labs: ['MEC Lab', 'EPL Lab', 'Steve Jobs Block', 'Alan Turing Block', 'Nikola Tesla Block', 'C Block'], - hostel: ['Girls Hostel'], - canteen: ['Canteen', 'Girls Mess', 'Arcade'], + hostel: ['Girls Hostel', 'Boys Mess'], + canteen: ['Canteen', 'Girls Mess', 'Boys Mess', 'Staff Mess', 'Arcade'], auditorium: ['Steve Jobs Block', 'Campus Centre'], sports: ['Playground'], };