import type { ReactNode } from "react"; import { Button } from "./Button"; import { Heading } from "./Heading"; export function Guides({ children }: { children: ReactNode }) { return (
Guides
{children}
); } export function Guide({ href, name, description, }: { href: string; name: string; description: string; }) { return (

{name}

{description}

); }