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

# Community

> Start from a community template — browse, bookmark, and remix it into a project you own.

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 **Community** page is a gallery of templates shared by other Flowy creators. Instead of starting from a blank canvas, find a workflow you like and remix it into your own workspace.

<DemoVideo src="/videos/dashboard/community-remix.mp4" poster="/images/posters/dashboard/community-remix.jpg" caption="Browsing community templates and remixing one into a new project" />

## Browse templates

The page opens with featured picks, followed by the full catalog. Click any template to see its detail view — a preview of the canvas and what the workflow produces — before you commit to remixing it.

## Bookmark for later

Not ready to remix? Bookmark a template and it lands in your **Saved** list, reachable from the top of the Community page. Bookmarks are a lightweight way to build a shortlist of workflows worth trying.

## Remix a template

Remixing turns a community template into a project of your own. Flowy performs the copy server-side:

1. A new project is created in your current workspace.
2. The template's entire canvas is cloned into it — nodes, connections, and settings.
3. Every piece of media is copied into your workspace, so the images and video in your remix belong to you.

When the remix finishes, the new project opens in the [canvas editor](/canvas/overview). It's fully yours: edit prompts, rewire nodes, and regenerate anything — nothing you do touches the original template.

<Tip>
  Remixes are regular projects. Find them later under [Projects](/dashboard/projects), and manage the media they brought along in [Assets](/dashboard/assets).
</Tip>
