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:
committed by
GitHub
parent
a9ea1c6eed
commit
3e48be4c31
@@ -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>
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user