'use client'; import { QuoteIcon, StarIcon } from 'lucide-react'; import Image from 'next/image'; import Markdown from 'react-markdown'; import { FeatureCardBackground } from '@/components/feature-card'; import { Section, SectionHeader, SectionLabel } from '@/components/section'; import { cn } from '@/lib/utils'; const images = [ { name: 'Lucide Animated', url: 'https://lucide-animated.com', logo: '/logos/lucide-animated.png', }, { name: 'KiddoKitchen', url: 'https://kiddokitchen.se', logo: '/logos/kiddokitchen.png', }, { name: 'Maneken', url: 'https://maneken.app', logo: '/logos/maneken.png', }, { name: 'Midday', url: 'https://midday.ai', logo: '/logos/midday.png', }, { name: 'Screenzen', url: 'https://www.screenzen.co', logo: '/logos/screenzen.png', }, { name: 'Tiptip', url: 'https://tiptip.id', logo: '/logos/tiptip.png', }, ]; const quotes: { quote: string; author: string; site?: string; }[] = [ { quote: 'After testing several product analytics tools for Strackr, **we chose OpenPanel and we are very satisfied with the product**. We have been using it since the beta, and there are constant updates. Profiles and Conversion Events are our favorite features.', author: 'Julien Hany', site: 'https://strackr.com', }, { quote: `Before OpenPanel, I was using Plausible, and it was ok. **But OpenPanel is like 10 leagues ahead!!** Better UX/UI, many more features, and incredible support from the founder. Bonus point: it's 1 click install on Coolify!! I won't switch to anything else 😎`, author: 'Thomas Sanlis', site: 'https://uneed.best', }, { quote: `We've been using OpenPanel for almost three months and we're extremely happy with it. After paying a lot to PostHog for years, OpenPanel gives us the same, in many ways better, analytics while keeping full ownership of our data. It's truly self-hosted but surprisingly low maintenance: setup and ongoing upkeep are straightforward, so we spend less time managing tooling and more time acting on insights.\n\nOpenPanel delivers the metrics we need to understand our website and app performance and how users actually interact with them. The dashboards are clear, the data is reliable, and the feature set covers everything we relied on before. The support is absolutely fantastic: responsive, helpful, and knowledgeable, and that made the switch effortless. We honestly don’t want to run any business without OpenPanel anymore.`, author: 'Self-hosting users', }, ]; export function WhyOpenPanel() { return (
USED BY
{images.map((image) => (
{image.name}
))}
{quotes.slice(0, 2).map((quote) => (
{quote.quote}
{quote.author} {quote.site && ( {quote.site.replace('https://', '')} )}
))}
); }