| 11 | import AboutSection from "@/components/AboutSection"; |
| 12 | |
| 13 | interface LandingPageProps { |
| 14 | contributorsByRepo: Record<string, { avatars: string[]; total: number }>; |
| 15 | } |
| 16 | |
| 17 | export default function LandingPage({ contributorsByRepo }: LandingPageProps) { |
| 18 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected