Skip to content

Commit c9dc890

Browse files
committed
Add Uri's quote
1 parent 6ef2401 commit c9dc890

File tree

2 files changed

+13
-6
lines changed
  • src
    • app/conf/2025/components/testimonials
    • components/index-page/quotes-from-the-industry

2 files changed

+13
-6
lines changed

src/app/conf/2025/components/testimonials/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import maskBlur from "./mask.webp"
77
export interface TestimonialsProps extends React.HTMLAttributes<HTMLElement> {}
88

99
export interface Testimonial {
10-
quote: string
10+
quote: React.ReactNode
1111
author: {
1212
name: string
1313
role: string

src/components/index-page/quotes-from-the-industry/index.tsx

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,20 @@ const testimonials: Testimonial[] = [
1717
},
1818
},
1919
{
20-
quote:
21-
"GraphQL is evolving to new use cases every day and it's really a competitive advantage to experience them first hand with everyone that matters.",
20+
quote: (
21+
<>
22+
GraphQL is the best developer tool for creating and managing performant
23+
APIs at scale, both for producers and consumers. It can query any source
24+
and expose anything back, including real time data. It gives
25+
understanding of your API usage that no other
26+
spec&nbsp;can&nbsp;provide.
27+
</>
28+
),
2229
author: {
23-
name: "Vincent Desmares",
24-
role: "Teamstarter, CTO",
30+
name: "Uri Goldshtein",
31+
role: "The Guild, Founder & CEO",
2532
avatar:
26-
"https://avatars.sched.co/d/cc/21066875/avatar.jpg.320x320px.jpg?f80",
33+
"https://avatars.sched.co/8/2b/14900013/avatar.jpg.320x320px.jpg?9f1",
2734
},
2835
},
2936
{

0 commit comments

Comments
 (0)