import { GetStartedButton } from '@/components/get-started-button';
import { Button } from '@/components/ui/button';
import { cn } from '@/lib/utils';
import { ChevronRightIcon } from 'lucide-react';
import Link from 'next/link';
function Svg({ className }: { className?: string }) {
return (
);
}
export function CtaBanner({
title = (
<>
Ready to understand your users better?
Start tracking in minutes
>
),
description = 'Join thousands of companies using OpenPanel. Free 30-day trial, no credit card required. Self-host for free or use our cloud.',
ctaText,
ctaLink,
}: {
title?: string | React.ReactNode;
description?: string;
ctaText?: string;
ctaLink?: string;
}) {
return (
{description}