import clsx from "clsx"; import Link from "next/link"; import { BaseballIcon, CancelSubscriptionIcon, CodeBookIcon, DogChaserIcon, FeedbackIcon, InterviewPromptIcon, OnboardingIcon, PMFIcon, } from "@formbricks/ui/icons"; export default function BestPracticeNavigation() { const BestPractices = [ { name: "Interview Prompt", href: "/interview-prompt", status: true, icon: InterviewPromptIcon, description: "Ask only power users to book a time in your calendar. Get those juicy details.", category: "Understand Users", }, { name: "Product-Market Fit Survey", href: "/measure-product-market-fit", status: true, icon: PMFIcon, description: "Find out how disappointed people would be if they could not use your service any more.", category: "Understand Users", }, { name: "Onboarding Segments", href: "/onboarding-segmentation", status: false, icon: OnboardingIcon, description: "Get to know your users right from the start. Ask a few questions early, let us enrich the profile.", category: "Understand Users", }, { name: "Learn from Churn", href: "/learn-from-churn", status: true, icon: CancelSubscriptionIcon, description: "Churn is hard, but insightful. Learn from users who changed their mind.", category: "Increase Revenue", }, { name: "Improve Trial CR", href: "/improve-trial-conversion", status: true, icon: BaseballIcon, description: "Take guessing out, convert more trials to paid users with insights.", category: "Increase Revenue", }, { name: "Docs Feedback", href: "/docs-feedback", status: true, icon: CodeBookIcon, description: "Clear docs lead to more adoption. Understand granularly what's confusing.", category: "Boost Retention", }, { name: "Feature Chaser", href: "/feature-chaser", status: true, icon: DogChaserIcon, description: "Show a survey about a new feature shown only to people who used it.", category: "Boost Retention", }, { name: "Feedback Box", href: "/feedback-box", status: true, icon: FeedbackIcon, description: "Give users the chance to share feedback in a single click.", category: "Boost Retention", }, { name: "Improve Newsletter Content", href: "/improve-newsletter-content", status: true, icon: FeedbackIcon, description: "Improve your newsletter content by showing this survey to your readers.", category: "Boost Retention", }, ]; return (
{BestPractices.map((bestPractice) => (
{bestPractice.category}

{bestPractice.name}

{bestPractice.description}

))}
); }