mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-08 06:40:11 -06:00
* 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>
55 lines
1.6 KiB
TypeScript
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;
|