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

# Projects

> Create, organize, favorite, and restore projects — every canvas in your workspace starts here.

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

A project holds one canvas, and the **Projects** page is where you manage all of them for the current workspace. Open a project and you land in the [canvas editor](/canvas/overview), ready to work.

<DemoVideo src="/videos/dashboard/projects.mp4" poster="/images/posters/dashboard/projects.jpg" caption="Creating a project, marking a favorite, and restoring one from Trash" />

## Create a project

Use the create card at the front of the project grid to start a new project. It opens straight into the canvas — no setup screen in between. Each project card shows a thumbnail of its canvas so you can tell your work apart at a glance.

## Organize your projects

Every project card has a menu with the day-to-day actions:

* **Rename** — give the project a title that means something.
* **Duplicate** — copy the project, canvas and all, as a starting point for a new direction.
* **Favorite** — star the projects you're actively working on.
* **Move to Trash** — clear out projects you no longer need.

You can also search projects by name, and select several at once to favorite or trash them together. On projects that were shared with you, you can leave the project instead of trashing it — see [Sharing](/collaboration/sharing).

## All, Favorites, and Trash

The Projects area has three views:

* **All** — every active project in the workspace.
* **Favorites** — only the projects you've starred.
* **Trash** — projects you've removed, held for recovery.

## Trash and restore

Trashing a project is reversible. Open the **Trash** view to find it, then restore it to bring it back exactly as it was — canvas, assets, and history intact. While a project sits in Trash it can't be opened in the editor, so restore it first if you need to work on it.

<Note>
  Trash is workspace-scoped: switch workspaces from the rail on the left and the Projects page — including its Trash — follows along.
</Note>
