diff --git a/web/src/components/landing/CommunitySection.tsx b/web/src/components/landing/CommunitySection.tsx index 9edbf4d45..ae9cff6c2 100644 --- a/web/src/components/landing/CommunitySection.tsx +++ b/web/src/components/landing/CommunitySection.tsx @@ -1,7 +1,16 @@ import { motion } from 'framer-motion' import AnimatedSection from './AnimatedSection' -function TestimonialCard({ quote, author, delay }: any) { +interface CardProps { + quote: string + authorName: string + handle: string + avatarUrl: string + tweetUrl: string + delay: number +} + +function TestimonialCard({ quote, authorName, handle, avatarUrl, tweetUrl, delay }: CardProps) { return ( "{quote}"

-
-
- - {author} - -
+ + {`${authorName} +
+ + {authorName} + + + {handle} + +
+
) }