> ## Documentation Index
> Fetch the complete documentation index at: https://docs.junojourney.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to Juno

> Juno is a talent development platform — LMS, LXP, goals, events, and AI assistant in one place.

export const RelatedPages = ({pages = []}) => {
  if (pages.length === 0) return null;
  return <>
      <br />
      <strong>Related articles</strong>
      <CardGroup cols={2}>
        {pages.map(page => <Card title={page.title} href={page.href} key={page.href} />)}
      </CardGroup>
    </>;
};

export const RoleBadge = ({roles = []}) => {
  const colorMap = {
    Admin: "yellow",
    Manager: "blue",
    Learner: "green",
    "Co-editor": "purple"
  };
  return <>
      {roles.map(role => <span key={role}><Badge color={colorMap[role] || "gray"} size="sm" shape="pill">{role}</Badge>{" "}</span>)}
    </>;
};

## What is Juno?

Juno combines a **Learning Management System (LMS)** with a **Learning Experience Platform (LXP)**, alongside tools for career development, events, and collaboration — all in one platform.

<img src="https://mintcdn.com/juno-76d1c392/HrHBj6AIiyrDPc7W/images/getting-started/home-2026.png?fit=max&auto=format&n=HrHBj6AIiyrDPc7W&q=85&s=ac1d16e48c958d746d15d32e5ae955bd" alt="Juno Home — personalized dashboard with suggestion cards and Juno assistant" width="1280" height="800" data-path="images/getting-started/home-2026.png" />

Your organization activates the modules and features that fit your needs. What you see in Juno depends on your role and your organization's setup.

***

## Core modules

<CardGroup cols={2}>
  <Card title="LMS" icon="chalkboard-teacher">
    Create and publish learning content, Journeys, SCORM packages, and quizzes. Manage your Company Academy and track completion.
  </Card>

  <Card title="LXP" icon="compass">
    Give learners access to an on-demand catalog with external content, self-directed learning, and budget management.
  </Card>

  <Card title="Development" icon="seedling">
    Goals, career paths, competency frameworks, skills profiles, and personal development plans.
  </Card>
</CardGroup>

***

## Additional features

Your organization may also have enabled:

| Feature                | What it does                                                           |
| ---------------------- | ---------------------------------------------------------------------- |
| **Events**             | Create and manage live or virtual events with calendar integration     |
| **Surveys**            | Company-wide or targeted surveys                                       |
| **Channels**           | Team communication and collaboration spaces                            |
| **Groups**             | Community spaces for shared interests or teams                         |
| **Automations**        | Rule-based triggers for assignments, notifications, and workflows      |
| **Juno assistant**     | Ask questions about your learning, goals, and team in natural language |
| **Programs & Cohorts** | Schedule structured learning events with participant groups            |

***

## What you see in Juno

The sidebar and features visible to you depend on your **role** and your **organization's configuration**:

| Area                  | What it is                                                      | Route                     |
| --------------------- | --------------------------------------------------------------- | ------------------------- |
| **Home**              | Personalized dashboard with suggestion cards and Juno assistant | `/career`                 |
| **On-Demand Catalog** | Browse and request external learning content                    | `/catalog`                |
| **Company Academy**   | Your organization's internal learning catalog                   | `/company-catalog`        |
| **My Content**        | Content you've created or co-edit                               | `/create-and-collaborate` |
| **My Development**    | Goals, career paths, and your development plan                  | `/develop`                |
| **Surveys**           | Organizational surveys                                          | `/surveys`                |
| **Channels**          | Team communication spaces                                       | `/channels`               |
| **Admin**             | Platform management (admins only)                               | `/admin/0`                |
| **Manager**           | Team oversight and budget (managers only)                       | `/managers/3`             |

<Note>
  Not all items appear for every user. Your admin controls which modules and features are active. If something described in these docs doesn't appear in your Juno, contact your admin.
</Note>

***

## How to get started

<Steps>
  <Step title="Log in">
    Use your company's Juno URL. See [First Login](/getting-started/first-login).
  </Step>

  <Step title="Get oriented">
    Learn the interface. See [Navigating Juno](/getting-started/navigating-juno).
  </Step>

  <Step title="Understand your role">
    See [Roles & Permissions](/getting-started/roles-and-permissions) to understand what you can access.
  </Step>

  <Step title="Check your notifications">
    See [Notifications](/getting-started/notifications) to stay informed about assignments, feedback, and events.
  </Step>
</Steps>

<RelatedPages
  pages={[
{ href: "/getting-started/first-login", title: "First Login" },
{ href: "/getting-started/navigating-juno", title: "Navigating Juno" },
{ href: "/getting-started/roles-and-permissions", title: "Roles & Permissions" },
{ href: "/getting-started/notifications", title: "Notifications" },
]}
/>
