The Connect page is GradGather’s core networking hub. It presents alumni profiles as a responsive card grid so that students and fellow alumni can quickly scan the network, identify professionals by company and role, and express interest in connecting. Each card shows a photo, the person’s name, their current job title and employer, and a Connect button for initiating contact.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/meenalsingh0/GradGather/llms.txt
Use this file to discover all available pages before exploring further.
Accessing Connect
The Connect page is served from a dedicated Express route that rendersconnect.hbs:
| Method | Path | Description |
|---|---|---|
| GET | /connect | Connect page with people cards |
People Cards
The page renders aconnect-grid div that contains one .person-card element per alumni profile. Each card includes a profile photo, a full name heading, a job title and company paragraph, and a Connect button.
The three alumni profiles currently displayed are:
John Doe
Software Engineer at Google
Jane Smith
Product Manager at Facebook
Bob Johnson
Data Scientist at Amazon
The Connect button on each card is currently a UI scaffold — it does not
yet trigger a backend connection request workflow. Clicking it has no effect
server-side. A future implementation would
POST to a connections endpoint,
storing a pending request document in MongoDB and notifying the recipient.Navigation
The Connect page includes the full alumni navbar styled with a purple (#a781f5) background. The navbar links are identical to those on the alumni dashboard:
| Label | Path |
|---|---|
| Events | /Events |
| Forum | # |
| Clubs | /clubs |
| Connect | /connect |
| Alumni Directory | /directory |
| Profile | /userprofile |