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

# Dashboard Overview

> Find your way around the Flowy dashboard: projects, assets, brand kits, community, and settings.

export const DemoVideo = ({src, poster, caption, aspectRatio = "16 / 10", className = ""}) => {
  return <figure className={`not-prose my-6 w-full ${className}`}>
      <div className="overflow-hidden rounded-2xl border border-gray-950/10 bg-gray-100 dark:border-white/10 dark:bg-white/5" style={{
    aspectRatio
  }}>
        <video src={src} poster={poster} loop autoPlay muted playsInline className="h-full w-full object-cover" />
      </div>
      {caption && <figcaption className="mt-2 text-center text-sm text-gray-500 dark:text-gray-400">
          {caption}
        </figcaption>}
    </figure>;
};

The dashboard is home base: everything that isn't the editor lives here. It's where you create and organize projects, manage your asset library and brand kits, browse community templates, and reach your settings.

<DemoVideo src="/videos/dashboard/overview.mp4" poster="/images/posters/dashboard/overview.jpg" caption="Moving through the dashboard sidebar: Home, Projects, Brand Kit, Assets, and Community" />

## The sidebar

The sidebar on the left is your map of the dashboard:

* **Home** — your landing page, with quick access to recent work.
* **Projects** — every project in the workspace, with All, Favorites, and Trash views.
* **Brand Kit** — the brand kits you've extracted or built for this workspace.
* **Assets** — your Drive-like library of uploads and generations.
* **Community** — public templates you can browse, bookmark, and remix.

Below the main items, the sidebar keeps a shortlist of your **recent projects** so you can jump back into work with one click.

## The workspace rail

Along the far left edge sits the workspace switcher rail. Each icon is a [workspace](/collaboration/workspaces) you belong to — click one to switch, and every dashboard page updates to that workspace's projects, assets, and kits. Your account menu lives at the bottom of the same rail.

## Where settings live

Settings are split by scope:

* **Account settings** cover things that belong to you — profile, preferences, and security. Open them from your account menu; the sidebar switches to a dedicated **Account** panel while you're there.
* **Workspace settings** cover the current workspace — members, billing, and workspace-level options. The sidebar switches to a **Settings** panel with a back link to return to the dashboard.

See [Account](/settings/account) and [Workspace](/settings/workspace) for the full breakdown.

## Explore the dashboard

<CardGroup cols={2}>
  <Card title="Projects" icon="folder" href="/dashboard/projects">
    Create, favorite, duplicate, and restore your projects.
  </Card>

  <Card title="Assets" icon="photo-film" href="/dashboard/assets">
    Organize uploads and generations in nested folders.
  </Card>

  <Card title="Brand Kit" icon="palette" href="/dashboard/brand-kit">
    Capture your brand's logos, colors, and fonts in one kit.
  </Card>

  <Card title="Community" icon="users" href="/dashboard/community">
    Remix community templates into your own workspace.
  </Card>

  <Card title="Product Updates" icon="sparkles" href="/dashboard/updates">
    Follow what's new in Flowy on the public changelog.
  </Card>
</CardGroup>
