mirror of
https://github.com/formbricks/formbricks.git
synced 2026-05-03 04:11:55 -05:00
d20fc9512a
* radio docs v1 * update Form HQ to Formbricks HQ * added redirect * correct typo
83 lines
2.3 KiB
TypeScript
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;
|