Files
formbricks-formbricks/apps/formbricks-com/lib/docsNavigation.ts
T
2022-11-15 16:02:51 +01:00

39 lines
1.1 KiB
TypeScript

const navigation = [
{
title: "Introduction",
links: [
{ title: "Why Formbricks?", href: "/docs/introduction/why-formbricks" },
{ title: "How to achieve this?", href: "/docs/introduction/how-to-achieve-this" },
{ title: "What is Formbricks?", href: "/docs/introduction/what-is-formbricks" },
{ title: "Quick start", href: "/docs/introduction/quick-start" },
],
},
{
title: "React Form Library",
links: [
{
title: "Introduction",
href: "/docs/react-form-library/introduction",
},
{
title: "Getting started",
href: "/docs/react-form-library/getting-started",
},
],
},
{
title: "Data Pipelines",
links: [
{ title: "Core API", href: "/docs/data-pipelines/core-api" },
{ title: "Email Notifications", href: "/docs/data-pipelines/email-notifications" },
{ title: "Webhooks", href: "/docs/data-pipelines/webhooks" },
],
},
{
title: "Data Insights",
links: [{ title: "Form HQ", href: "/docs/data-insights/form-hq" }],
},
];
export default navigation;