Update home card visuals and partner marketing assets (#19711)

## Summary
- replace static home card imagery with code-driven visuals for the
familiar interface, fast path, and live data cards
- refine the live data card interaction details, including hover states,
animated cursors, filter chips, table styling, and inline tag editing
- add shared company logos, people avatars, and updated partner
testimonial assets to support the new marketing visuals
- refresh related home, partner, case study, signoff, testimonials, and
design-system content/components to align with the updated marketing
presentation

## Testing
- `npx tsc -p tsconfig.json --noEmit` in `packages/twenty-website-new`

Co-authored-by: Abdullah <125115953+mabdullahabaid@users.noreply.github.com>
This commit is contained in:
Thomas des Francs
2026-04-15 08:35:46 +02:00
committed by GitHub
parent a9ea1c6eed
commit 3e48be4c31
58 changed files with 4321 additions and 168 deletions
@@ -33,10 +33,6 @@ const StyledPoint = styled.div`
}
`;
const StyledBody = styled(Body)`
color: ${theme.colors.primary.text[80]};
`;
export type PointsProps = { points: ProblemPointType[] };
export function Points({ points }: PointsProps) {
@@ -47,7 +43,7 @@ export function Points({ points }: PointsProps) {
<StyledDivider />
<StyledPoint>
<Heading segments={point.heading} weight="medium" size="xs" />
<StyledBody body={point.body} size="sm" />
<Body body={point.body} size="sm" />
</StyledPoint>
</React.Fragment>
))}