fix: use real founder headshots in seed data (#17749)

## Summary
Updates the avatar URLs for seeded founders to use properly named images
instead of generic numbered placeholder images.

## Changes
Updates `prefill-people.ts` to reference new image paths in
`twentyhq/placeholder-images/founders/`:

| Person | Company | New Image Path |
|--------|---------|----------------|
| Brian Chesky | Airbnb | `founders/brian-chesky.jpg` |
| Dario Amodei | Anthropic | `founders/dario-amodei.jpg` |
| Patrick Collison | Stripe | `founders/patrick-collison.jpg` |
| Dylan Field | Figma | `founders/dylan-field.jpg` |
| Ivan Zhao | Notion | `founders/ivan-zhao.jpg` |

## Related
Requires a corresponding PR on `twentyhq/placeholder-images` to add the
actual founder headshot images to the `founders/` directory.

## Why
The previous placeholder images were generic numbered images that didn't
represent the actual people. This creates a single source of truth for
founder images that all workspaces can reference.
This commit is contained in:
Félix Malfait
2026-02-05 17:49:43 +01:00
committed by GitHub
parent 04b8f2aaf5
commit e382641ac3
@@ -49,7 +49,7 @@ export const prefillPeople = async (
city: 'San Francisco',
emailsPrimaryEmail: 'chesky@airbnb.com',
avatarUrl:
'https://twentyhq.github.io/placeholder-images/people/image-3.png',
'https://twentyhq.github.io/placeholder-images/founders/brian-chesky.jpg',
position: 1,
createdBySource: FieldActorSource.SYSTEM,
createdByWorkspaceMemberId: null,
@@ -68,7 +68,7 @@ export const prefillPeople = async (
city: 'San Francisco',
emailsPrimaryEmail: 'amodei@anthropic.com',
avatarUrl:
'https://twentyhq.github.io/placeholder-images/people/image-89.png',
'https://twentyhq.github.io/placeholder-images/founders/dario-amodei.jpg',
position: 2,
createdBySource: FieldActorSource.SYSTEM,
createdByWorkspaceMemberId: null,
@@ -87,7 +87,7 @@ export const prefillPeople = async (
city: 'San Francisco',
emailsPrimaryEmail: 'collison@stripe.com',
avatarUrl:
'https://twentyhq.github.io/placeholder-images/people/image-47.png',
'https://twentyhq.github.io/placeholder-images/founders/patrick-collison.jpg',
position: 3,
createdBySource: FieldActorSource.SYSTEM,
createdByWorkspaceMemberId: null,
@@ -106,7 +106,7 @@ export const prefillPeople = async (
city: 'San Francisco',
emailsPrimaryEmail: 'field@figma.com',
avatarUrl:
'https://twentyhq.github.io/placeholder-images/people/image-40.png',
'https://twentyhq.github.io/placeholder-images/founders/dylan-field.jpg',
position: 4,
createdBySource: FieldActorSource.SYSTEM,
createdByWorkspaceMemberId: null,
@@ -125,7 +125,7 @@ export const prefillPeople = async (
city: 'San Francisco',
emailsPrimaryEmail: 'zhao@notion.com',
avatarUrl:
'https://twentyhq.github.io/placeholder-images/people/image-68.png',
'https://twentyhq.github.io/placeholder-images/founders/ivan-zhao.jpg',
position: 5,
createdBySource: FieldActorSource.SYSTEM,
createdByWorkspaceMemberId: null,