GradGather surfaces a different home screen depending on the user’s role. Alumni are directed to the Alumni Dashboard atDocumentation 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.
/landing, while students land on the Student Dashboard at /studash. Each dashboard presents a hero section and a four-card feature grid that links out to the platform’s core functionality. Navigation links in the top navbar differ between the two views to reflect the features most relevant to each role.
Alumni Dashboard
Route:
GET /landing — showcases alumni networking, the alumni directory, job postings, and donation features. Navbar includes a direct link to /connect and /userprofile.Student Dashboard
Route:
GET /studash — welcomes the student by name using the {{naming}} variable and highlights student-to-alumni connection, the shared directory, job openings, and club fundraising.Alumni Dashboard (/landing)
The alumni dashboard renders landing.hbs. Its hero section displays a static welcome message — “Welcome, John!” — along with the tagline “Reconnect, grow, and contribute to the alumni community.” Below the hero, a feature-grid presents four cards that map to the platform’s main capabilities:
- Alumni-to-Alumni Connection — Engage and connect with fellow alumni across industries and locations.
- Alumni Directory & Filtering — Search for alumni using a comprehensive directory with filters for batch, course, and more.
- Job Openings Posting — Share or explore job opportunities within the alumni network.
- Donations for Clubs & Scholarships — Contribute to clubs, scholarships, or causes and help future students.
| Label | Path |
|---|---|
| Events | /Events |
| Forum | # |
| Clubs | /clubs |
| Connect | /connect |
| Alumni Directory | /directory |
| Profile | /userprofile |
Student Dashboard (/studash)
The student dashboard renders studash.hbs. Unlike the alumni dashboard, the hero section uses the {{naming}} Handlebars variable so the welcome message is personalised at render time — for example, “Welcome Alice”. The tagline reads “Reconnect, grow, and contribute to the student community.”
The four feature cards on the student dashboard reflect a student-centric perspective:
- Student-to-Alumni Connection — Engage and connect with alumni across industries and locations.
- Alumni/Student Directory & Filtering — Search the directory with filters for batch, course, and more.
- Job Openings — Explore opportunities within the network to grow your career.
- Donations for Clubs & Scholarship Fundraising — Contribute to clubs, scholarships, or causes that resonate with you.
/stuprofile instead:
| Label | Path |
|---|---|
| Events | /Events |
| Forum | # |
| Clubs | /clubs |
| Directory | /directory |
| My Profile | /stuprofile |
User Profiles
GradGather provides two separate profile views, one for each role.Alumni Profile (/userprofile)
The alumni profile renders userprofile.hbs and displays the following static fields:
| Field | Example Value |
|---|---|
| Full Name | John Doe |
| College Name | ABC University |
| Batch | 2020–2024 |
| Course | Bachelor of Technology |
| Section | CSE-2 |
| john.doe@example.com | |
| Alumni Status | Active |
| Graduation Year | 2024 |
| Position in Alumni Association | Event Coordinator |
| Recent Activity | Participated in the Annual Tech Conference 2024 |
Student Profile (/stuprofile)
The student profile renders stuprofile.hbs and declares three Handlebars variables intended to show the student’s name, email, and graduation year:
| Handlebars Variable | Intended Value | Description |
|---|---|---|
{{naming}} | Student’s display name | Rendered in the welcome heading and Full Name field |
{{emailing}} | Student’s email address | Rendered in the Email field |
{{passing}} | Expected graduation year | Rendered in the Graduation Year field |