Files
formbricks-formbricks/apps/formbricks-com/lib/docsNavigation.ts
Johannes fbcc9d5628 Update Docs, add Walkthrough Video to App & LP (#212)
* update LP with walk through

* update docs with attributes and events

* update team UI + form validation

* add walk through to app

* small fixes

---------

Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
2023-03-30 17:24:04 +02:00

55 lines
1.6 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: "Getting Started",
links: [
{ title: "Quickstart", href: "/docs/getting-started/quickstart" },
{ title: "Setup with Next.js", href: "/docs/getting-started/nextjs" },
{ title: "Setup with Vue.js", href: "/docs/getting-started/vuejs" },
],
},
{
title: "Attributes",
links: [
{ title: "Why Attributes?", href: "/docs/attributes/why" },
{ title: "Custom Attributes", href: "/docs/attributes/custom-attributes" },
{ title: "Identify users", href: "/docs/attributes/identify-users" },
],
},
{
title: "Events",
links: [
{ title: "Why Events?", href: "/docs/events/why" },
{ title: "No-Code Events", href: "/docs/events/no-code" },
{ title: "Code Events", href: "/docs/events/code" },
],
},
{
title: "API",
links: [
{ title: "Overview", href: "/docs/api/overview" },
{ title: "API Key Setup", href: "/docs/api/api-key-setup" },
],
},
{
title: "Client API",
links: [
{ title: "Create Response", href: "/docs/api/create-response" },
{ title: "Update Response", href: "/docs/api/update-response" },
],
},
{
title: "Self-hosting",
links: [{ title: "Deployment", href: "/docs/self-hosting/deployment" }],
},
];
export default navigation;