> ## 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.

# Your Home Page

> The page you land on — a greeting, a row of cards showing what needs your attention, and the Juno assistant ready to answer questions.

export const SupportContact = () => {
  return <Info title="Still need help?">
      Contact us at <a href="mailto:support@junojourney.com">support@junojourney.com</a> or use the support widget in Juno.
    </Info>;
};

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>
    </>;
};

**Home** (`/career`) is where you land when you sign in. It's built to fit on one screen: a greeting at the top, a row of cards showing what needs your attention, and the Juno assistant's input at the bottom.

<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="Your home page" width="1280" height="800" data-path="images/getting-started/home-2026.png" />

<Note>
  The home page described here is in beta. If your page looks different, your organization is still on the previous home page.
</Note>

***

## The greeting

The top of the page greets you by name, next to a character your organization can swap for its own artwork or hide entirely. Underneath is a one-line summary of what the page is showing you — admins see a week-ahead framing, everyone else sees a note that the cards are suggestions to act on.

***

## Cards

Below the greeting is a single row of **three cards**. Each one shows a title, a short description, a live preview of the underlying data, a headline number, and a button that takes you where you can act.

Some cards are always there because they always have something to show:

| Card                          | What it shows                        |
| ----------------------------- | ------------------------------------ |
| **Browse company training**   | Learning your organization built     |
| **Explore external learning** | Learning from outside providers      |
| **Check your goals**          | Your development progress            |
| **Upcoming due dates**        | Everything due soon, in one place    |
| **Upcoming Events**           | What's next on your schedule         |
| **Your learning budget**      | What you have left to spend          |
| **Channels**                  | The spaces your organization curates |
| **Create a course**           | Start building learning content      |

Others appear only when they apply — an assignment about to come due, a budget request waiting on you, a voucher you haven't used, a session starting soon, a waitlist spot that opened. Cards for something time-critical carry an **URGENT** badge.

### Card actions

Open a card's **⋯** menu to:

| Action             | What it does                                |
| ------------------ | ------------------------------------------- |
| **Save for later** | Set the card aside for now                  |
| **Not interested** | Stop Juno from offering that card           |
| **Pin to my view** | Keep the card on your home page permanently |

Pinning is covered in [Homepage Views](/getting-started/homepage-views), along with switching between views.

### Quiet cards

Some cards only report something when there's a reason to. If there's nothing to say, the card doesn't vanish or claim a false all-clear — it tells you plainly why it's quiet:

| Card                       | When there's nothing to report |
| -------------------------- | ------------------------------ |
| **Upcoming due dates**     | "Nothing due"                  |
| **Incomplete assignments** | "Everyone is on track"         |
| **Upcoming Events**        | "Nothing scheduled"            |
| **Your team's goals**      | "No goals yet"                 |

If a card can't load its data it says so instead of looking the same as "nothing due" — so an empty card is always an answer you can trust. When there's nothing to suggest anywhere, the row fills with a calm **"You're all caught up"** card.

***

## The Juno assistant

At the bottom of the page is a chat input. Type a question and press enter, and the conversation **takes over the whole page** — the greeting and cards fade out and the assistant's answer fills the space. Leave the conversation to return to your cards.

Under the input is a row of category pills — **Stay on track**, **Insight**, **Build & Improve**, and **Explore**. Select one to see suggested prompts for that category rather than starting from a blank input.

The assistant can search your organization's learning, answer questions about your team and budget, pull learning data into a table right in the chat, and carry out actions such as assigning learning or sending a reminder — always showing you what it's about to do first. See [Juno Assistant](/ai-features/ai-assistant) for the full picture, and [Suggestion Chips](/ai-features/ai-suggestions) for the prompt categories.

***

## What managers and admins see

Home shows the same shape to everyone; what changes is which cards are offered.

| Role        | Extra cards                                                                                                |
| ----------- | ---------------------------------------------------------------------------------------------------------- |
| **Manager** | **Your team's goals**, deadlines coming up across your team, and budget requests waiting for your approval |
| **Admin**   | **Incomplete assignments** on learning you own, deadlines across your learners, and events with a waitlist |

Admins also get two controls nobody else sees: a **background** picker for the page's appearance, and the ability to build homepage views for other people. Both are covered in [Homepage Views (Admin)](/admin/homepage-views).

***

## Switching back to the previous home page

If your organization joined Juno before July 2026, the top-left corner has a **New Homepage** switch with a **Beta** badge. Turn it off to go back to the previous home page; the choice sticks until you change it. On a phone the switch sits in the header instead.

Organizations that joined more recently start on this home page and don't have the switch.

<Note>
  New people in an organization that has this home page enabled start on it by default.
</Note>

***

## Don't see it?

The home page and the Juno assistant are enabled together for a whole organization. If you'd like it turned on, or turned off:

<SupportContact />

<RelatedPages
  pages={[
{ href: "/getting-started/homepage-views", title: "Homepage Views" },
{ href: "/ai-features/ai-assistant", title: "Juno Assistant" },
{ href: "/getting-started/navigating-juno", title: "Navigating Juno" },
]}
/>
