Skip to content

Commit

Permalink
add more testimonials
Browse files Browse the repository at this point in the history
  • Loading branch information
danilo-leal committed Sep 21, 2023
1 parent a147034 commit 872b78e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 16 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
26 changes: 10 additions & 16 deletions docs/src/components/productJoyUI/JoyUITestimonial.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,16 @@ import Link from 'docs/src/modules/components/Link';

const additionalTestimonials = [
{
testimonial: `“Joy UI played a pivotal role in shaping the success of big-AGI. It turns heads with its stunning looks and makes other devs envious with its responsiveness, lightweight
footprint, comprehensive documentation, and polished API. Using Joy UI is a delight,
and the optimal React frontend choice.”`,
author: 'Enrico Ros',
role: 'Product Management',
avatar: '/static/branding/joy-ui/enricoros.png',
companyLogo: '/static/branding/joy-ui/big-agi-logo.svg',
testimonial: `“Joy UI brings the best bits from Material UI, with a cleaner and fresher look out of the box. The variants approach covers almost all of your UI edge cases, while the flexible theme configuration provides plenty of room for customization. I think that with the right approach, Joy UI should cater to all your front-end development needs.”`,
author: 'Badal Saibo',
role: 'Frontend Engineer ',
avatar: '/static/branding/joy-ui/badalsaibo.jpeg',
},
{
testimonial: `“Joy UI played a pivotal role in shaping the success of big-AGI. It turns heads with its stunning looks and makes other devs envious with its responsiveness, lightweight
footprint, comprehensive documentation, and polished API. Using Joy UI is a delight,
and the optimal React frontend choice.”`,
author: 'Enrico Ros',
role: 'Product Management',
avatar: '/static/branding/joy-ui/enricoros.png',
companyLogo: '/static/branding/joy-ui/big-agi-logo.svg',
testimonial: `“Joy UI is a game-changer for our large-scale internal tool. It lets us focus on our complex system, not UI components. Even in alpha, it became our go-to library, thanks to the trust and expertise we have in the MUI team. The documentation is comprehensive, with many practical examples. Joy UI's support is outstanding; they respond quickly and pay attention to detail in UI/UX and DX. It's a must-have for developers and companies looking to boost productivity and streamline their UI development.”`,
author: 'Marc Pacheco',
role: 'Lead Frontend Developer',
avatar: '/static/branding/joy-ui/marcpacheco.jpeg',
},
{
testimonial: `“Joy UI played a pivotal role in shaping the success of big-AGI. It turns heads with its stunning looks and makes other devs envious with its responsiveness, lightweight
Expand All @@ -43,7 +37,7 @@ interface TestimonialAuthorProps {
avatar: string;
author: string;
role: string;
companyLogo: string;
companyLogo?: string;
}

export function TestimonialAuthor({ avatar, author, role, companyLogo }: TestimonialAuthorProps) {
Expand All @@ -60,7 +54,7 @@ export function TestimonialAuthor({ avatar, author, role, companyLogo }: Testimo
{role}
</Typography>
</div>
<Box component="img" src={companyLogo} alt="" sx={{ ml: 'auto' }} />
{companyLogo && <Box component="img" src={companyLogo} alt="" sx={{ ml: 'auto' }} />}
</Box>
</React.Fragment>
);
Expand Down

0 comments on commit 872b78e

Please sign in to comment.