import { Button } from "./Button"; import { Heading } from "./Heading"; const guides = [ { href: "/authentication", name: "Authentication", description: "Learn how to authenticate your API requests.", }, ]; export function Guides() { return (
Guides
{guides.map((guide) => (

{guide.name}

{guide.description}

))}
); }