-
-
Notifications
You must be signed in to change notification settings - Fork 765
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
1,933 additions
and
1,574 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
import IconGettingStarted from '../icons/GettingStarted' | ||
import IconTutorials from '../icons/Tutorials' | ||
import IconUseCases from '../icons/UseCases' | ||
import IconGuide from '../icons/Guide' | ||
import IconSpec from '../icons/Spec' | ||
import IconUsers from '../icons/Users' | ||
|
||
export const buckets = [ | ||
{ | ||
name: 'concepts', | ||
title: 'Concepts', | ||
description: 'Our Concepts section defines the concepts of AsyncAPI features and capabilities.', | ||
link: '/docs/concepts', | ||
className: 'bg-secondary-200', | ||
borderClassName: 'border-secondary-200', | ||
Icon: IconGettingStarted, | ||
}, | ||
{ | ||
name: 'tutorials', | ||
title: 'Tutorials', | ||
description: 'Our Tutorials section teaches beginner processes with AsyncAPI, guiding you from Point A to Point B.', | ||
link: '/docs/tutorials', | ||
className: 'bg-pink-100', | ||
borderClassName: 'border-pink-100', | ||
Icon: IconTutorials, | ||
}, | ||
{ | ||
name: 'guides', | ||
title: 'Guides', | ||
description: "Our Guides section teaches AsyncAPI's capabilities at a high level.", | ||
link: '/docs/guides', | ||
className: 'bg-primary-200', | ||
borderClassName: 'border-primary-200', | ||
Icon: IconGuide, | ||
}, | ||
{ | ||
name: 'tools', | ||
title: 'Tools', | ||
description: 'Our Tools section documents the AsyncAPI tools ecosystem.', | ||
link: '/docs/tools', | ||
className: 'bg-green-200', | ||
borderClassName: 'border-green-200', | ||
Icon: IconUseCases, | ||
}, | ||
{ | ||
name: 'reference', | ||
title: 'Reference', | ||
description: 'Our Reference section documents the AsyncAPI specification.', | ||
link: '/docs/reference', | ||
className: 'bg-yellow-200', | ||
borderClassName: 'border-yellow-200', | ||
Icon: IconSpec, | ||
}, | ||
{ | ||
name: 'community', | ||
title: 'Community', | ||
description: 'Our Community section documents the community guidelines and resources.', | ||
link: '/docs/community', | ||
className: 'bg-orange-200', | ||
borderClassName: 'border-orange-200', | ||
Icon: IconUsers, | ||
}, | ||
].map(bucket => { | ||
// we need such a mapping for some parts of website, e.g navigation blocks use the `icon` property, not `Icon` etc. | ||
return { | ||
...bucket, | ||
href: bucket.link, | ||
icon: bucket.Icon, | ||
}; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.