> For the complete documentation index, see [llms.txt](https://dao-dao-docs.gitbook.io/dao-dao-ui/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dao-dao-docs.gitbook.io/dao-dao-ui/home.md).

# Home

So, you want to contribute to the DAO DAO frontend? Great - we're happy to have you!

Curious about the various services DAO DAO uses to support its frontend? Check the infrastructure page!

What kind of contribution are you interested in making?

### I want to report a bug in the UI.

[Open an issue](https://github.com/DA0-DA0/dao-dao-ui/issues) and tag the issue "bug." Feel free to reach out to us on Discord as well---people who find bugs get a special role. (:

### I want to suggest a new feature.

[Open an issue](https://github.com/DA0-DA0/dao-dao-ui/issues) and tag the issue "feature suggestion." Feature suggestions will be triaged through our design and roadmapping process.

### I want to translate DAO DAO to a new language.

Head over to [`packages/i18n`](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/i18n) and follow the instructions in that README to contribute a translation.

### I want to add a new Action to DAO DAO's UI.

DAO DAO proposals can have Actions, code that can be run "as the DAO" after a proposal passes (e.g., spending money or executing a smart contract). Adding an Action to the UI allows DAO members to configure Actions' code and parameters via a GUI.

Learn \[\[how to add an Action to DAO DAO's UI|Adding an action to DAO DAO]].

### I want to work on a UI component.

We use [Storybook](https://storybook.js.org/) to build stateless components in isolation. Head over to [`packages/storybook`](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/storybook) and follow the instructions in that README to run Storybook.

**Hints for getting started**: Explore the components we already have in [`packages/stateless/components`](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/stateless/components). Copy a story from that folder. Modify an existing component to suit your needs. Play around.

Our docs are constantly evolving, primarily as a result of questions and confusions that inevitably arise in the development process. We love to help; don't hesitate to reach out!

**Does your component display user-uploaded images?** Learn how we \[\[get image accent colors|Getting image accent colors]] in the UI.

### I want to add support for a new voting module.

Head over to [`packages/stateful/voting-module-adapter`](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/stateful/voting-module-adapter) and follow the instructions in that README to get started.

We strongly encourage reading through the other voting module adapters and building an understanding of the interface before diving in. The [`CwdVotingCw4` adapter](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/stateful/voting-module-adapter/adapters/CwdVotingCw4) represents a simple membership-based DAO voting structure. The [`CwdVotingCw20Staked` adapter](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/stateful/voting-module-adapter/adapters/CwdVotingCw20Staked) is a bit more complex, as it involves staking and unstaking [CW20](https://docs.cosmwasm.com/cw-plus/0.9.0/cw20/spec) tokens. These were the inaugural adapters, and both are worth checking out.

### I want to add support for a new proposal module.

Head over to [`packages/stateful/proposal-module-adapter`](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/stateful/proposal-module-adapter) and follow the instructions in that README to get started.

We strongly encourage reading through the other proposal module adapters to build an understanding of the interface before you start. The inaugural adapter is the [`CwdProposalSingle` adapter](https://github.com/DA0-DA0/dao-dao-ui/tree/development/packages/stateful/proposal-module-adapter/adapters/CwdProposalSingle), allowing for the creation of proposals that accept `Yes`, `No`, and `Abstain` votes to be cast on a given set of actions or just a message.

### I want to understand how the UI works! How do the pieces all fit together?

Fantastic! Read more about \[\[the frontend's architecture|<https://github.com/DA0-DA0/dao-dao-ui/wiki/DAO-DAO-UI-architecture>]] and \[\[the design decisions|<https://github.com/DA0-DA0/dao-dao-ui/wiki/DAO-DAO-UI-design-decisions>]] we made.

Got an idea on how to improve our architecture or operations? Tag a core member on our [Discord](https://discord.gg/5uBMNMy4UR). We love making things better.
