import { LogoSquare } from '@/components/logo'; import { Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, } from '@/components/ui/carousel'; import { Link } from '@tanstack/react-router'; import { CodeIcon, CreditCardIcon, DollarSignIcon } from 'lucide-react'; import { SellingPoint } from './selling-points'; const onboardingSellingPoints = [ { key: 'get-started', render: () => (

Free trial

No credit card required

Add our tracking code and get insights in real-time.

} /> ), }, { key: 'welcome', render: () => ( ), }, { key: 'selling-point-2', render: () => ( ), }, { key: 'selling-point-3', render: () => ( ), }, { key: 'selling-point-4', render: () => ( ), }, { key: 'selling-point-5', render: () => ( ), }, ]; export function OnboardingLeftPanel() { return (
{/* Carousel */}
{onboardingSellingPoints.map((point, index) => (
{point.render()}
))}
); }