fix: remove faqpage

This commit is contained in:
Carl-Gerhard Lindesvärd
2026-02-17 12:02:50 +01:00
parent cdc286b3fd
commit fef4941e06
2 changed files with 5 additions and 5 deletions

View File

@@ -132,7 +132,7 @@ All plans include unlimited websites, team members, and 5 years of data retentio
- No advanced features like predictive analytics or machine learning
- Self-hosting requires technical expertise and infrastructure management
<Faqs schema={false}>
<Faqs>
<FaqItem question="How does OpenPanel compare to Mixpanel for pricing?">
OpenPanel is typically 70-90% cheaper than Mixpanel at scale. For example, tracking 1 million events costs $90/month with OpenPanel vs $779/month with Mixpanel. The savings increase as your usage grows.
</FaqItem>
@@ -206,7 +206,7 @@ PostHog uses a complex usage-based pricing model across different products:
- Some features only available in paid cloud version
- Higher learning curve than simpler alternatives
<Faqs schema={false}>
<Faqs>
<FaqItem question="How does PostHog's pricing compare to Mixpanel?">
PostHog's free tier is 10x larger (1M vs 100k events), but costs can escalate quickly if you use multiple products. At scale, PostHog analytics alone costs ~$50 per million events vs Mixpanel's ~$779, but adding session replay and feature flags increases the total significantly.
</FaqItem>
@@ -280,7 +280,7 @@ Heap offers a free tier and custom enterprise pricing:
- Privacy concerns with capturing everything
- Free tier is limited to 10k sessions (not events)
<Faqs schema={false}>
<Faqs>
<FaqItem question="How does Heap's autocapture compare to manual event tracking?">
Autocapture eliminates the need to decide what to track upfront, which is great for discovery. However, it generates more data than you need and can make it harder to focus on important metrics. Manual tracking (like Mixpanel or OpenPanel) requires more planning but gives you cleaner, more intentional data.
</FaqItem>
@@ -404,7 +404,7 @@ Pendo's pricing is based on monthly active users (MAUs) rather than events:
- Heavier SDK can impact page performance
- Free tier limited to 500 MAUs
<Faqs schema={false}>
<Faqs>
<FaqItem question="How does Pendo compare to Mixpanel for analytics?">
Mixpanel is stronger for pure analytics — deeper funnels, more flexible queries, and better data exploration. Pendo's analytics are competent but simpler. The real value of Pendo is combining analytics with in-app guides and feedback, which Mixpanel doesn't offer at all.
</FaqItem>

View File

@@ -8,7 +8,7 @@ import {
export const Faqs = ({
children,
schema = true,
schema = false,
}: {
children: React.ReactNode;
schema?: boolean;