README / app /frontend /src /components /DocsPortal.tsx
CJGibs's picture
Build Aether Voice Studio Docker Space
703a33a
raw
history blame contribute delete
425 Bytes
import type { DocsEntry } from "../content/types";
interface DocsPortalProps {
entries: DocsEntry[];
}
export function DocsPortal({ entries }: DocsPortalProps) {
return (
<div className="docs-portal">
{entries.map((entry) => (
<a key={entry.title} className="doc-card" href={entry.anchor}>
<h3>{entry.title}</h3>
<p>{entry.description}</p>
</a>
))}
</div>
);
}