+{text}{person &&}
diff --git a/packages/web/docs/src/components/company-logos/index.tsx b/packages/web/docs/src/components/company-logos/index.tsx index e7cf109aa..fcd805ced 100644 --- a/packages/web/docs/src/components/company-logos/index.tsx +++ b/packages/web/docs/src/components/company-logos/index.tsx @@ -224,3 +224,32 @@ export function WealthsimpleLogo(props: LogoProps) { ); } + +export function ProdigyLogo(props: LogoProps) { + return ( + + ); +} diff --git a/packages/web/docs/src/components/company-testimonials/index.tsx b/packages/web/docs/src/components/company-testimonials/index.tsx index b19d14774..8256e082e 100644 --- a/packages/web/docs/src/components/company-testimonials/index.tsx +++ b/packages/web/docs/src/components/company-testimonials/index.tsx @@ -5,15 +5,22 @@ import * as Tabs from '@radix-ui/react-tabs'; import { CallToAction, Heading } from '@theguild/components'; import { cn } from '../../lib'; import { ArrowIcon } from '../arrow-icon'; -import { KarrotLogo, NacelleLogo, WealthsimpleLogo, type LogoProps } from '../company-logos'; +import { + KarrotLogo, + NacelleLogo, + ProdigyLogo, + WealthsimpleLogo, + type LogoProps, +} from '../company-logos'; import karrotPicture from './karrot-picture.webp'; import nacellePicture from './nacelle-picture.webp'; +import prodigyPicture from './prodigy-picture.webp'; import wealthsimplePicture from './wealthsimple-picture.webp'; type Testimonial = { company: string; logo: (props: LogoProps) => React.ReactElement; - text: string; + text: React.ReactNode; picture?: { img: string | StaticImageData; className?: string; @@ -55,6 +62,27 @@ const testimonials: Testimonial[] = [ img: wealthsimplePicture, }, }, + { + company: 'Prodigy', + logo: props => ( +
atLeastOnceSampler is
+ crucial to capture telemetry from less-often run operations. The schema explorer condenses
+ hours of searching through Github for client usage down to minutes.
+ >
+ ),
+ picture: {
+ img: prodigyPicture,
+ className: 'bg-[#a9e7f599]',
+ },
+ data: [{ numbers: '>750MM', description: 'requests every month' }],
+ },
];
export function CompanyTestimonialsSection({ className }: { className?: string }) {
@@ -165,7 +193,7 @@ export function CompanyTestimonialsSection({ className }: { className?: string }
)}
+{text}{person &&}