Skip to main content

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.

GradGather’s Clubs section highlights the university’s active societies, giving alumni a way to stay connected with campus life and financially support the communities that shaped them. The clubs listing page presents all four societies in a responsive grid, and clicking through to an individual club page reveals full details, alumni testimonials, and a direct path to making a donation.

Clubs Listing

The clubs listing page is served at GET /clubs and renders clubs.hbs. It displays the four university clubs in a four-column CSS grid, each club represented by a logo image, a name, a category label, and a short description.
// src/index.js
app.get("/clubs", (req, res) => {
  res.render("clubs");
});

TechnoX

Technical Society — TechnoX is a vibrant college technical society that fosters innovation, hosts workshops, and organizes events to enhance technical skills and knowledge among students. Links to /techno for the full club detail page.

Bizeco

Entrepreneurship Society — A dynamic college entrepreneurship society fostering innovation, providing resources, and mentoring students to develop and launch impactful startup ideas and ventures. ⚠️ Club detail link is currently broken (see note below).

NSS Club

Social Service — The NSS Club promotes community service through volunteerism, addressing social issues, and fostering a spirit of empathy and social responsibility among students. ⚠️ Club detail link is currently broken (see note below).

Niyantran

Yoga & Wellness Club — Niyantran promotes holistic well-being through yoga, mindfulness, and wellness practices for a balanced and healthy student life. ⚠️ Club detail link is currently broken (see note below).
In clubs.hbs, only the TechnoX card links to the correct Express route (/techno). The Bizeco, NSS Club, and Niyantran cards all use href="techno.html" — a bare HTML file path that does not correspond to any route registered in src/index.js. Clicking those three cards will produce a 404 in the Express app. Each club needs its own route and template (e.g. GET /bizeco, GET /nss, GET /niyantran) or the hrefs should be updated to point to a shared club detail route.
<!-- tempelates/clubs.hbs — clubs grid -->
<div class="grid">
  <div class="box">
    <a href="/techno">  <!-- ✅ valid Express route -->
      <img src="images/clubs/tech.png" alt="TechnoX">
      <h3><b>TechnoX</b><br><i>Technical Society</i></h3>
      <p>TechnoX is a vibrant college technical society that fosters innovation,
         hosts workshops, and organizes events to enhance technical skills and
         knowledge among students.</p>
    </a>
  </div>
  <div class="box">
    <a href="techno.html">  <!-- ⚠️ broken — no matching Express route -->
      <img src="images/clubs/entre.png" alt="Bizeco">
      <h3><b>Bizeco</b><br><i>Entrepreneurship Society</i></h3>
      <p>Bizeco is a dynamic college entrepreneurship society fostering innovation,
         providing resources, and mentoring students to develop and launch
         impactful startup ideas and ventures.</p>
    </a>
  </div>
  <div class="box">
    <a href="techno.html">  <!-- ⚠️ broken — no matching Express route -->
      <img src="images/clubs/social.png" alt="NSS Club">
      <h3><b>NSS Club</b><br><i>Social Service</i></h3>
      <p>The NSS Club at our college promotes community service through volunteerism,
         addressing social issues, and fostering a spirit of empathy and social
         responsibility among students.</p>
    </a>
  </div>
  <div class="box">
    <a href="techno.html">  <!-- ⚠️ broken — no matching Express route -->
      <img src="images/clubs/yoga.png" alt="Niyantran">
      <h3><b>Niyantran</b><br><i>Yoga &amp; Wellness Club</i></h3>
      <p>Niyantran is the college Yoga &amp; Wellness Club, promoting holistic
         well-being through yoga, mindfulness, and wellness practices for a
         balanced and healthy student life.</p>
    </a>
  </div>
</div>

TechnoX Club Detail (/techno)

Clicking the TechnoX card navigates to /techno, which renders techno.hbs — a dedicated landing page for the technical society. The page is structured into five sections:
1

Hero

A full-width hero banner with the heading “Welcome to TechnoX” and the tagline “Where innovation meets collaboration. Empowering future leaders to make an impact through technology.”
2

About

A prose section describing the club: “Founded in 2015, TechnoX is a college club focused on fostering technological innovation and entrepreneurship among students. Our mission is to empower students to turn ideas into impactful projects and startups.”
3

Core Values

A three-column values grid presenting Innovation (out-of-the-box thinking and creativity), Collaboration (teamwork at the core of every solution), and Impact (projects that address real-world challenges).
4

Alumni Members

A section titled “Our Alumni” with a short paragraph noting that TechnoX alumni have gone on to lead tech companies, start businesses, and hold influential roles at global organisations.
5

Donate Now

A “Support TechnoX” section with a Donate Now button. Clicking the button calls openDonation(), which redirects the user to /paymentGateway.
// tempelates/techno.hbs — donate button handler
function openDonation() {
  window.location.href = "/paymentGateway";
}

Supporting Clubs

Alumni can contribute to any of the four clubs through the Donations page. Campaigns for club hackathons and initiatives are listed at /donation. See the Donations page for the full payment flow.

Routes Reference

MethodPathDescription
GET/clubsAll clubs listing
GET/technoTechnoX club detail

Build docs developers (and LLMs) love