import { ChevronRightIcon } from 'lucide-react'; import Link from 'next/link'; import { Button } from './ui/button'; import { cn } from '@/lib/utils'; export function GetStartedButton({ text, href = 'https://dashboard.openpanel.dev/onboarding', className, }: { text?: React.ReactNode; className?: string; href?: string; }) { return ( ); }