Files
formbricks-formbricks/apps/formbricks-com/lib/docsNavigation.ts
2022-12-01 15:57:15 +01:00

108 lines
2.9 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: Checkbox",
href: "/docs/react-form-library/input-checkbox",
},
{
title: "Input: Email",
href: "/docs/react-form-library/input-email",
},
{
title: "Input: Number",
href: "/docs/react-form-library/input-number",
},
{
title: "Input: Password",
href: "/docs/react-form-library/input-password",
},
{
title: "Input: Phone",
href: "/docs/react-form-library/input-phone",
},
{
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: URL",
href: "/docs/react-form-library/input-url",
},
{
title: "Input: Search",
href: "/docs/react-form-library/input-search",
},
{
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: "Icons",
href: "/docs/react-form-library/icons",
},
],
},
{
title: "Formbricks HQ",
links: [
{ title: "Core API", href: "/docs/formbricks-hq/core-api" },
{ title: "Schema", href: "/docs/formbricks-hq/schema" },
{ title: "Email Notifications (UI)", href: "/docs/formbricks-hq/ui/email-notifications" },
{ title: "Webhooks (UI)", href: "/docs/formbricks-hq/ui/webhooks" },
],
},
];
export default navigation;