Skip to content

Commit

Permalink
fix: add Specification Explorer to mobile dropdown and unify Migratio…
Browse files Browse the repository at this point in the history
…n spelling (asyncapi#3727)
  • Loading branch information
rathoretaruncodes committed Feb 24, 2025
1 parent 89c7f7a commit 6399887
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion components/navigation/learningItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import IconPaper from '../icons/Paper';
import IconPlant from '../icons/Plant';
import IconRocket from '../icons/Rocket';
import IconUsers from '../icons/Users';
import IconExplorer from '../icons/Explorer';

interface LearningItem {
href: string;
Expand Down Expand Up @@ -56,7 +57,7 @@ const learningItems: LearningItem[] = [
href: '/docs/migration',
icon: IconMigration,
className: 'bg-blue-400',
title: 'Migrations',
title: 'Migration',
description: 'Our migration guides on how to upgrade to newer AsyncAPI versions.'
},
{
Expand All @@ -65,6 +66,13 @@ const learningItems: LearningItem[] = [
className: 'bg-red-200',
title: 'Community',
description: 'Our Community section documents the community guidelines and resources.'
},
{
href: '/docs/reference/specification/v3.0.0-explorer',
icon: IconExplorer,
className: 'bg-teal-200',
title: 'Specification Explorer',
description: 'Simplifying our Specification JSON Schema like a pro.',
}
];

Expand Down

0 comments on commit 6399887

Please sign in to comment.