import { cn } from '@workspace/ui/lib/utils'; import { Button } from '@workspace/ui/components/ui/button'; import Link from 'next/link'; import { motion } from 'motion/react'; export const SectionWrapper = ({ title, subtitle, description, color = 'text-blue-500', backgroundColor = 'bg-blue-500/10 hover:bg-blue-500/20', children, }: { title: React.ReactNode; subtitle: React.ReactNode; description: React.ReactNode; color?: string; backgroundColor?: string; children: React.ReactNode; }) => { return (

{subtitle}

{title}

{description}

{children}
); };