mirror of
https://github.com/formbricks/formbricks.git
synced 2026-03-16 11:41:41 -05:00
* add new docs for user research approach --------- Co-authored-by: knugget <johannes@knugget.de>
91 lines
2.2 KiB
TypeScript
91 lines
2.2 KiB
TypeScript
const navigation = [
|
|
{
|
|
title: "Introduction",
|
|
links: [
|
|
{ title: "What is Formbricks?", href: "/docs/introduction/what-is-formbricks" },
|
|
{ title: "Why is it better?", href: "/docs/introduction/why-is-it-better" },
|
|
{ title: "How does it work?", href: "/docs/introduction/how-it-works" },
|
|
],
|
|
},
|
|
{
|
|
title: "Best Practices",
|
|
links: [
|
|
{
|
|
title: "What are Best Practices?",
|
|
href: "/docs/best-practices/what-are-best-practices",
|
|
},
|
|
{
|
|
title: "Feedback Box",
|
|
href: "/docs/best-practices/feedback-box",
|
|
},
|
|
{
|
|
title: "Product-Market Fit Survey",
|
|
href: "/docs/best-practices/pmf-survey",
|
|
},
|
|
{
|
|
title: "Onboarding Segmentation",
|
|
href: "/docs/best-practices/onboarding-segmentation",
|
|
},
|
|
{
|
|
title: "Waitlist Survey",
|
|
href: "/docs/best-practices/waitlist-survey",
|
|
},
|
|
{
|
|
title: "Interview Prompt",
|
|
href: "/docs/best-practices/interview-prompt",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "Wrappers",
|
|
links: [
|
|
{
|
|
title: "What are Wrappers?",
|
|
href: "/docs/wrappers/what-are-wrappers",
|
|
},
|
|
{
|
|
title: "In-app Pop-over",
|
|
href: "/docs/wrappers/pop-over",
|
|
},
|
|
{
|
|
title: "In-app Slide-out",
|
|
href: "/docs/wrappers/slide-out",
|
|
},
|
|
{
|
|
title: "Modal",
|
|
href: "/docs/wrappers/modal",
|
|
},
|
|
{
|
|
title: "Inline",
|
|
href: "/docs/wrappers/inline",
|
|
},
|
|
{
|
|
title: "Link",
|
|
href: "/docs/wrappers/link",
|
|
},
|
|
{
|
|
title: "Email",
|
|
href: "/docs/wrappers/email",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: "API",
|
|
links: [
|
|
{ title: "API Setup", href: "/docs/api/setup" },
|
|
{ title: "Create Submission", href: "/docs/api/create-submission" },
|
|
{ title: "Update Submission", href: "/docs/api/update-submission" },
|
|
{ title: "Update Schema", href: "/docs/api/update-schema" },
|
|
],
|
|
},
|
|
{
|
|
title: "Self-hosting",
|
|
links: [
|
|
{ title: "Quick Start", href: "/docs/self-hosting/quick-start" },
|
|
{ title: "Deployment", href: "/docs/self-hosting/deployment" },
|
|
],
|
|
},
|
|
];
|
|
|
|
export default navigation;
|