()
| 20 | ]; |
| 21 | |
| 22 | export function Guides() { |
| 23 | return ( |
| 24 | <div className="my-16 xl:max-w-none"> |
| 25 | <Heading level={2} id="guides"> |
| 26 | Guides |
| 27 | </Heading> |
| 28 | <div className="prose mt-4 grid grid-cols-1 gap-x-3 gap-y-8 border-t border-zinc-900/5 pt-6 dark:prose-invert sm:grid-cols-2 xl:grid-cols-3 dark:border-white/5"> |
| 29 | {guides.map(guide => ( |
| 30 | <div key={guide.href}> |
| 31 | <h3 className="mt-0">{guide.name}</h3> |
| 32 | <p>{guide.description}</p> |
| 33 | <p className="mb-0"> |
| 34 | <Button |
| 35 | href={guide.href} |
| 36 | variant="text" |
| 37 | arrow="right" |
| 38 | > |
| 39 | Read more |
| 40 | </Button> |
| 41 | </p> |
| 42 | </div> |
| 43 | ))} |
| 44 | </div> |
| 45 | </div> |
| 46 | ); |
| 47 | } |
nothing calls this directly
no outgoing calls
no test coverage detected