import { cn } from '@/lib/utils'; import { DollarSignIcon } from 'lucide-react'; import Link from 'next/link'; import { HeroCarousel } from './hero-carousel'; import { HeroMap } from './hero-map'; import { Tag } from './tag'; import { Button } from './ui/button'; export function Hero() { return ( {/* Shadow bottom */}
{/* Content */}
Free during beta

An open-source alternative to Mixpanel

The power of Mixpanel, the ease of Plausible and nothing from Google Analytics 😉

{/* CTA */}

Free trial for 30 days, no credit card required

); } export function HeroContainer({ children, className, }: { children?: React.ReactNode; className?: string; }): React.ReactElement { return (
{/* Map */} {/* Gradient over map */}
{children}
{/* Shadow bottom */}
); }