mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 21:47:38 +00:00
## Summary - **New Getting Started section** with quickstart guide and restructured navigation - **Halftone-style illustrations** for User Guide and Developer introduction cards using a Canvas 2D filter script - **Removed hero images** (`image:` frontmatter + `<Frame><img>` blocks) from all user-guide article pages - **Cleaned up translations** (13 languages): removed hero images and updated introduction cards to use halftone style - **Cleaned up twenty-ui pages**: removed outdated hero images from component docs - **Deleted orphaned images**: `table.png`, `kanban.png` - **Developer page**: fixed duplicate icon, switched to 3-column layout ## Test plan - [ ] Verify docs site builds without errors - [ ] Check User Guide introduction page renders halftone card images in both light and dark mode - [ ] Check Developer introduction page renders 3-column layout with distinct icons - [ ] Confirm article pages no longer show hero images at the top - [ ] Spot-check a few translated pages to ensure hero images are removed 🤖 Generated with [Claude Code](https://claude.com/claude-code) --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: github-actions <github-actions@twenty.com>
77 lines
1.8 KiB
Text
77 lines
1.8 KiB
Text
---
|
|
title: Bugs, Requests & Pull Requests
|
|
icon: "bug"
|
|
info: Report issues, request features, and contribute code
|
|
---
|
|
|
|
|
|
## Reporting Bugs
|
|
|
|
To report a bug, please [create an issue on GitHub](https://github.com/twentyhq/twenty/issues/new).
|
|
|
|
You can also ask for help on [Discord](https://discord.gg/cx5n4Jzs57).
|
|
|
|
## Feature Requests
|
|
|
|
If you're not sure if it's a bug, and you feel it's closer to a feature request, then you should probably [open a discussion instead](https://github.com/twentyhq/twenty/discussions/new).
|
|
|
|
## Submit a Pull Request
|
|
|
|
Contributing code to Twenty starts with a pull request (PR).
|
|
|
|
### Before You Start
|
|
|
|
1. Check [existing issues](https://github.com/twentyhq/twenty/issues) for related work
|
|
2. For new features, open an issue first to discuss
|
|
3. Review our [Code of Conduct](https://github.com/twentyhq/twenty/blob/main/CODE_OF_CONDUCT.md)
|
|
|
|
### Fork and Clone
|
|
|
|
1. Fork the repository on GitHub
|
|
2. Clone your fork:
|
|
```bash
|
|
git clone https://github.com/YOUR_USERNAME/twenty.git
|
|
cd twenty
|
|
```
|
|
|
|
3. Add upstream remote:
|
|
```bash
|
|
git remote add upstream https://github.com/twentyhq/twenty.git
|
|
```
|
|
|
|
### Create a Branch
|
|
|
|
```bash
|
|
git checkout -b feature/your-feature-name
|
|
```
|
|
|
|
Use descriptive branch names:
|
|
- `feature/add-export-button`
|
|
- `fix/login-redirect-issue`
|
|
- `docs/update-api-guide`
|
|
|
|
### Make Your Changes
|
|
|
|
1. Write clean, well-documented code
|
|
2. Follow existing code style
|
|
3. Add tests for new functionality
|
|
4. Update documentation if needed
|
|
|
|
### Submit Your PR
|
|
|
|
1. Push your branch:
|
|
```bash
|
|
git push origin feature/your-feature-name
|
|
```
|
|
|
|
2. Open a PR on GitHub
|
|
3. Fill in the PR template
|
|
4. Link related issues
|
|
|
|
### PR Checklist
|
|
|
|
- [ ] Code follows project style guidelines
|
|
- [ ] Tests pass locally
|
|
- [ ] Documentation is updated
|
|
- [ ] PR description explains the changes
|
|
|