import { motion } from 'framer-motion'; import { cn } from '@/lib/utils'; interface LogoProps { className?: string; animate?: boolean; } export function Logo({ className, animate = false }: LogoProps) { return ( {animate ? ( <> ) : ( <> )} ); }