Bright header background that blends white into a soft blue and purple gradient at the bottom.

The future of community

Taking student engagement to the next level, because we put user experience first

The future of community

Taking student engagement to the next level, because we put user experience first

Lounge web and mobile dashboard interface showcasing campus management tools, including group organization and event management for student organizations.
Lounge web and mobile dashboard interface showcasing campus management tools, including group organization and event management for student organizations.
Lounge web and mobile dashboard interface showcasing campus management tools, including group organization and event management for student organizations.
Lounge web and mobile dashboard interface showcasing campus management tools, including group organization and event management for student organizations.
  • University of California, Berkeley Logo
  • Florida State University Logo
  • High Point University Logo
  • University of Nebraska Kearney Logo
  • Massachusetts Institute of Technology Logo
  • Iowa State University Logo
  • San Diego State University Logo
  • University of Wyoming Logo
  • Northern Arizona University Logo
  • University of Southern California Logo
  • Rensselaer Polytechnic Institute Logo
  • University of Nottingham Logo
  • University of Oxford Logo
  • University of Liverpool Logo

Saving your staff time, budget, and stress

Saving your staff time, budget, and stress

Club and organization management
Image grid showing various types of student organizations on Lounge. A ‘Student government’ organization features a group of students from with their arms around each other.
Image grid showing various types of student organizations on Lounge. A ‘Student government’ organization features a group of students from with their arms around each other.
Image grid showing various types of student organizations on Lounge. A ‘Student government’ organization features a group of students from with their arms around each other.
Customizable admin
and reviewer roles
Customizable admin and reviewer roles
A university employee’s profile is overlaid with several options to customise their assigned role. Options include ‘Reviewer’, ‘Advisor’, and ‘Admin’.
A university employee’s profile is overlaid with several options to customise their assigned role. Options include ‘Reviewer’, ‘Advisor’, and ‘Admin’.
A university employee’s profile is overlaid with several options to customise their assigned role. Options include ‘Reviewer’, ‘Advisor’, and ‘Admin’.
Data insights and reporting in seconds
A data report titled ‘Engagement Overview’ featuring various student engagement metrics in the form of charts and graphs.
A data report titled ‘Engagement Overview’ featuring various student engagement metrics in the form of charts and graphs.
A data report titled ‘Engagement Overview’ featuring various engagement metrics in the form of charts and graphs.
Lounge logo
Simple financial management
A chart titled ‘Your budget’ shows a detailed breakdown of various university funds, their spending limit, as well as a green badge that indicates that a purchase request was approved.
A chart titled ‘Your budget’ shows a detailed breakdown of various university funds, their spending limit, as well as a green badge that indicates that a purchase request was approved.
A screen titled ‘Your budget’ shows a detailed breakdown of various university funds, their spending limit, as well as a green badge that indicates that a purchase request was approved.
Event registration,
check-in, check out
An image of a formal dinner table scene is overlaid with the date and a green badge with a checkmark and the text ‘Event reviewed’.
An image of a formal dinner table scene is overlaid with the date and a green badge with a checkmark and the text ‘Event reviewed’.
An image of a formal dinner table scene is overlaid with the date and a green badge with a checkmark and the text ‘Event reviewed’.
Built-in
community tools
Various community tools from the Lounge app, including a poll, an announcement post with emoji reactions, shared albums, and a direct message chat bubble.
Various community tools from the Lounge app, including a poll, an announcement post with emoji reactions, shared albums, and a direct message chat bubble.
Various community tools from the Lounge app, including a poll, an announcement post with emoji reactions, shared albums, and a direct message chat bubble.

Custom solutions for your needs

Custom solutions for your needs

Custom solutions for your needs

Campus-wide roster management

Live, up-to-date rosters, smoothly integrated with your campuses data

Customizable admin and reviewer roles

Streamlined review processes to the relevant people to eliminate duplication

Centralized financial
management

Simple budget allocation, purchase requests and integration with accounting systems

Campus-wide roster management

Live, up-to-date rosters, smoothly integrated with your campuses data

Customizable admin and reviewer roles

Streamlined review processes to the relevant people to eliminate duplication

Centralized financial
management

Simple budget allocation, purchase requests and integration with accounting systems

Campus-wide roster management

Live, up-to-date rosters, smoothly integrated with your campuses data

Customizable admin and reviewer roles

Streamlined review processes to the relevant people to eliminate duplication

Centralized financial
management

Simple budget allocation, purchase requests and integration with accounting systems

Want to learn more?

Want to learn more?

Book a product demo with our team to see how Lounge can help you achieve your student engagement goals.

import { useEffect } from "react";

export default function Code() {
  useEffect(() => {
    function handleCalendlyMessage(e: MessageEvent) {
      if (e.data.event === "calendly.event_scheduled") {
        window.gtag?.("event", "calendly_booking", {
          event_category: "engagement",
          event_label: "Calendly appointment scheduled",
          value: 1,
        });
      }
    }

    window.addEventListener("message", handleCalendlyMessage);

    return () => {
      window.removeEventListener("message", handleCalendlyMessage);
    };
  }, []);

  return null;
}