import { Button } from '@/components/Button' import { Heading } from '@/components/Heading' const guides = [ { href: '/ipa/authentication', name: 'Authentication', description: 'Learn how to authenticate your API requests.', }, { href: '/ipa/errors', name: 'Errors', description: 'Read about the different types of errors returned by the API.', }, ] export function Guides() { return (
Guides
{guides.map((guide) => (

{guide.name}

{guide.description}

))}
) }