import { cn } from '@/lib/utils'; import Link from 'next/link'; import { HeroCarousel } from './hero-carousel'; import { HeroMap } from './hero-map'; import { Button } from './ui/button'; import { WorldMap } from './world-map'; export function Hero() { return ( {/* Shadow bottom */}
{/* Content */}

An open-source alternative to Mixpanel

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

{/* CTA */}

Free 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 */}
); }