We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/deleonio/public-ui-kolibri'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
image.tsx•686 B
import type { FC } from 'react';
import React from 'react';
import { KolLink } from '@public-ui/react-v19';
import { SampleDescription } from '../SampleDescription';
export const LinkImage: FC = () => (
<>
<SampleDescription>
<p>KolLink can be used with slot-content instead of a label as well. This sample demonstrates the slot content used to display an image.</p>
</SampleDescription>
<div className="grid gap-4">
<KolLink _href="#/back-page" _label="I am a link that is rendered as text" />
<KolLink _href="#/back-page" _label="">
<img alt="Presentation of the KoliBri theming" slot="expert" src="abgrenzung.jpg" width="300" />
</KolLink>
</div>
</>
);