Skip to content

Commit

Permalink
make it more generic
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Sep 21, 2023
1 parent 6c1dbe4 commit d8f9904
Show file tree
Hide file tree
Showing 12 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions docs/src/components/about/AboutEnd.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export default function AboutEnd() {
</Box>
<Box
component="img"
src="/static/branding/about/team-globe-distribution-light.png"
src="/static/branding/about/illustrations/team-globe-distribution-light.png"
alt="A map illustration with pins loosely positioned where team members from MUI are located."
loading="lazy"
width="1100"
Expand All @@ -54,7 +54,7 @@ export default function AboutEnd() {
display: { xs: 'none', sm: 'block' },
width: { sm: '100%' },
...theme.applyDarkStyles({
content: 'url(/static/branding/about/team-globe-distribution-dark.png)',
content: 'url(/static/branding/about/illustrations/team-globe-distribution-dark.png)',
}),
})}
/>
Expand Down
16 changes: 8 additions & 8 deletions docs/src/components/about/OurValues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,32 @@ const values = [
{
title: 'Put community first 💙',
description: 'We never lose sight of who we’re serving and why.',
lightIcon: 'url(/static/branding/about/values-icons/community-light.svg)',
darkIcon: 'url(/static/branding/about/values-icons/community-dark.svg)',
lightIcon: 'url(/static/branding/about/illustrations/community-light.svg)',
darkIcon: 'url(/static/branding/about/illustrations/community-dark.svg)',
width: 92,
height: 84,
},
{
title: 'Avoid bureaucracy 🚫',
description: 'We’re so not corporate — and we like it that way.',
lightIcon: 'url(/static/branding/about/values-icons/bureaucracy-light.svg)',
darkIcon: 'url(/static/branding/about/values-icons/bureaucracy-dark.svg)',
lightIcon: 'url(/static/branding/about/illustrations/bureaucracy-light.svg)',
darkIcon: 'url(/static/branding/about/illustrations/bureaucracy-dark.svg)',
width: 81,
height: 94,
},
{
title: 'Chase “better” 🌱',
description: 'We’re driven by an unending desire to improve.',
lightIcon: 'url(/static/branding/about/values-icons/better-light.svg)',
darkIcon: 'url(/static/branding/about/values-icons/better-dark.svg)',
lightIcon: 'url(/static/branding/about/illustrations/better-light.svg)',
darkIcon: 'url(/static/branding/about/illustrations/better-dark.svg)',
width: 89,
height: 89,
},
{
title: 'Trust and deliver together 🚀',
description: 'We choose to cultivate unity as the core of achievement.',
lightIcon: 'url(/static/branding/about/values-icons/trust-light.svg)',
darkIcon: 'url(/static/branding/about/values-icons/trust-dark.svg)',
lightIcon: 'url(/static/branding/about/illustrations/trust-light.svg)',
darkIcon: 'url(/static/branding/about/illustrations/trust-dark.svg)',
width: 75,
height: 92,
},
Expand Down

0 comments on commit d8f9904

Please sign in to comment.