Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: add description to modelina docs #775

Merged
merged 11 commits into from
Jul 13, 2022
2 changes: 1 addition & 1 deletion components/navigation/toolingItems.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default [
{ href: 'https://studio.asyncapi.com/', icon: IconHub, title: 'Studio', description: 'Visually design your AsyncAPI files and event-driven architecture.', beta: true },
{ href: '/tools/generator', icon: IconGenerator, title: 'Generator', description: 'Use your AsyncAPI files to generate documentation, code, anything!' },
{ href: '/tools/cli', icon: TerminalIcon, title: 'CLI', description: 'Interact with AsyncAPI from the comfort of your CLI.' },
{ href: '/tools/modelina', icon: IconModelina, title: 'Modelina', description: 'Sometimes you just want to generate data models from your payload.' },
{ href: '/tools/modelina', icon: IconModelina, title: 'Modelina', description: 'Modelina is a library for generating data models based on inputs such as AsyncAPI, OpenAPI, or JSON Schema documents' },
// { href: '/react', icon: IconReact, title: 'React Component', description: 'Embed your AsyncAPI documentation in your React application.' },
{ href: '/tools/github-actions', icon: IconGithubActions, title: 'Github Actions', description: 'Automate the validation and generation of documentation.' },
{ href: '/tools/parsers', icon: IconParser, title: 'Parsers', description: 'Parse AsyncAPI documents right inside your tools and products.' },
Expand Down
2 changes: 1 addition & 1 deletion pages/tools/modelina.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export default function ModelinaPlaygroundPage() {
const [error, setError] = useState();
const tryItOutRef = useRef(null);

const description = 'Sometimes you just want to generate data models for your payload.';
const description = 'Sometimes you just want to generate data models for your payload. Modelina is a library for generating data models based on inputs such as AsyncAPI, OpenAPI, or JSON Schema documents.';
const image = '/img/social/modelina-card.jpg';

const tabs = (
Expand Down