import { cn } from '@/lib/utils'; import { ArrowRightIcon, CalendarIcon, ChevronRightIcon, CookieIcon, CreditCardIcon, DatabaseIcon, FlaskRoundIcon, GithubIcon, ServerIcon, StarIcon, } from 'lucide-react'; import Link from 'next/link'; import { Competition } from './competition'; import { Tag } from './tag'; import { Button } from './ui/button'; const perks = [ { text: 'Free trial 30 days', icon: CalendarIcon }, { text: 'No credit card required', icon: CreditCardIcon }, { text: 'Cookie-less tracking', icon: CookieIcon }, { text: 'Open-source', icon: GithubIcon }, { text: 'Your data, your rules', icon: DatabaseIcon }, { text: 'Self-hostable', icon: ServerIcon }, ]; export function Hero() { return (
Trusted by +2000 projects

An open-source alternative to

An open-source web and product analytics platform that combines the power of Mixpanel with the ease of Plausible and one of the best Google Analytics replacements.

    {perks.map((perk) => (
  • {perk.text}
  • ))}
{/* Window controls */}