/** * CTA Section * Final call-to-action footer section */ 'use client'; import { Link } from '@/lib/i18n/routing'; import { motion } from 'framer-motion'; import { Github, Star, Play, ArrowRight } from 'lucide-react'; import { Button } from '@/components/ui/button'; interface CTASectionProps { onOpenDemoModal: () => void; } export function CTASection({ onOpenDemoModal }: CTASectionProps) { return (
{/* Background Pattern */}
); }