Files
formbricks-formbricks/apps/formbricks-com/lib/docsNavigation.ts
T
Johannes d20fc9512a Formbricks hq (#154)
* radio docs v1

* update Form HQ to Formbricks HQ

* added redirect

* correct typo
2022-11-23 11:05:58 +01:00

83 lines
2.3 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: "Link with Formbricks HQ",
href: "/docs/react-form-library/link-formbricks-hq",
},
{
title: "Work with Components",
href: "/docs/react-form-library/work-with-components",
},
{
title: "Validation & Errors",
href: "/docs/react-form-library/validation-errors",
},
{
title: "Form Wrapper",
href: "/docs/react-form-library/form-wrapper",
},
{
title: "Input: Text",
href: "/docs/react-form-library/input-text",
},
{
title: "Input: Textarea",
href: "/docs/react-form-library/input-textarea",
},
{
title: "Input: Radio Button",
href: "/docs/react-form-library/input-radio",
},
/* {
title: "Input: Checkbox",
href: "/docs/react-form-library/input-checkbox",
}, */
{
title: "Input: Submit",
href: "/docs/react-form-library/input-submit",
},
{
title: "Style with CSS",
href: "/docs/react-form-library/style-css",
},
{
title: "Style with Tailwind",
href: "/docs/react-form-library/style-tailwind",
},
],
},
{
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: "Formbricks HQ", href: "/docs/data-insights/formbricks-hq" }],
},
];
export default navigation;