1
0
mirror of synced 2025-12-19 10:00:34 -05:00
Files
airbyte/docusaurus/sidebar-community.js
devin-ai-integration[bot] a605a81da9 docs: Create community docs instance and move community content (#68675)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: ian.alton@airbyte.io <ian.alton@airbyte.io>
2025-11-03 18:22:15 -08:00

62 lines
1.2 KiB
JavaScript

const sectionHeader = (title) => ({
type: "html",
value: title,
className: "navbar__category",
});
const contributeToAirbyte = {
type: "category",
label: "Contribute to Airbyte",
link: {
type: "doc",
id: "contributing-to-airbyte/README",
},
items: [
"contributing-to-airbyte/issues-and-requests",
"contributing-to-airbyte/developing-locally",
"contributing-to-airbyte/writing-docs",
"contributing-to-airbyte/resources/pull-requests-handbook",
"contributing-to-airbyte/resources/qa-checks",
],
};
const licenses = {
type: "category",
label: "Licenses",
link: {
type: "doc",
id: "licenses/README",
},
items: [
"licenses/license-faq",
"licenses/elv2-license",
"licenses/mit-license",
"licenses/examples",
],
};
module.exports = {
community: [
{
type: "category",
collapsible: false,
label: "Community & support",
link: {
type: "doc",
id: "README",
},
items: [
"getting-support",
contributeToAirbyte,
"code-of-conduct",
licenses,
{
type: "link",
label: "Public roadmap",
href: "https://go.airbyte.com/roadmap",
},
],
},
],
};