()
| 47 | ] |
| 48 | |
| 49 | export function Libraries() { |
| 50 | return ( |
| 51 | <div className="my-16 xl:max-w-none"> |
| 52 | <Heading level={2} id="official-libraries"> |
| 53 | Official libraries |
| 54 | </Heading> |
| 55 | <div className="not-prose mt-4 grid grid-cols-1 gap-x-6 gap-y-10 border-t border-zinc-900/5 pt-10 sm:grid-cols-2 xl:max-w-none xl:grid-cols-3 dark:border-white/5"> |
| 56 | {libraries.map((library) => ( |
| 57 | <div key={library.name} className="flex flex-row-reverse gap-6"> |
| 58 | <div className="flex-auto"> |
| 59 | <h3 className="text-sm font-semibold text-zinc-900 dark:text-white"> |
| 60 | {library.name} |
| 61 | </h3> |
| 62 | <p className="mt-1 text-sm text-zinc-600 dark:text-zinc-400"> |
| 63 | {library.description} |
| 64 | </p> |
| 65 | <p className="mt-4"> |
| 66 | <Button href={library.href} variant="text" arrow="right"> |
| 67 | Read more |
| 68 | </Button> |
| 69 | </p> |
| 70 | </div> |
| 71 | <Image |
| 72 | src={library.logo} |
| 73 | alt="" |
| 74 | className="h-12 w-12" |
| 75 | unoptimized |
| 76 | /> |
| 77 | </div> |
| 78 | ))} |
| 79 | </div> |
| 80 | </div> |
| 81 | ) |
| 82 | } |
nothing calls this directly
no outgoing calls
no test coverage detected