twenty/packages/twenty-website
Thomas des Francs 15938c1fca
Add 2.0.0 release changelog (#19923)
## Summary
- Add 2.0.0 release notes and illustrations to `twenty-website-new`
- Remove old release mdx files from the legacy `twenty-website`
- Fix the resources-menu "Releases" preview to pull the latest release
dynamically, using the first (hero) image of the latest mdx

## Test plan
- [ ] Open any page on `twenty-website-new`, hover "Resources" → the
Releases preview shows "See what shipped in 2.0.0" with the Build-an-app
hero illustration
- [ ] Visit `/releases` and confirm 2.0.0 renders with all five sections
and images
- [ ] Confirm legacy `twenty-website` no longer ships the deleted
release pages

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-21 08:45:00 +00:00
..
public Website last fixes (#19895) 2026-04-21 05:43:06 +00:00
src Add 2.0.0 release changelog (#19923) 2026-04-21 08:45:00 +00:00
.env.example Fix twenty-website CI (#10790) 2025-03-11 18:39:20 +01:00
.gitignore Marketing improvements 3 (#3175) 2023-12-29 11:17:32 +01:00
.oxlintrc.json Migrate from ESLint to OxLint (#18443) 2026-03-06 01:03:50 +01:00
keystatic.config.ts Migrate documentation to Mintlify and configure 301 redirects (#15502) 2025-10-31 17:44:14 +01:00
next.config.js Complete linaria migration (#18361) 2026-03-04 00:50:06 +01:00
package.json Billing for self-hosts (#18075) 2026-03-12 15:07:53 +01:00
README.md Update documentation (#14891) 2025-10-21 19:02:39 +02:00
tsconfig.json Complete linaria migration (#18361) 2026-03-04 00:50:06 +01:00

Twenty-Website

This is used for the marketing website (twenty.com). This is not related in any way to the main app, which you can find in twenty-front and twenty-server.

Getting Started

We're using Next.js We're using Postgres for the database. Mandatory for the website to work, even locally.

  1. Copy the .env.example file to .env and fill in the values.

  2. Run the migrations:

npx nx run twenty-website:database:migrate
  1. From the root directory:
npx nx run twenty-website:dev

Then open http://localhost:3000 with your browser to see the result.

Or to build in prod:

npx nx run twenty-website:build
npx nx run twenty-website:start