diff --git a/web/src/components/landing/CommunitySection.tsx b/web/src/components/landing/CommunitySection.tsx index 9edbf4d4..d8165497 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, delay }: CardProps) { return (
- {author} + {authorName}