import { motion } from "framer-motion";
interface ClaudiaLogoProps {
size?: number;
className?: string;
}
export function ClaudiaLogo({ size = 48, className = "" }: ClaudiaLogoProps) {
return (
{/* Background glow animation */}
{/* Main logo with image */}
{/* Use the actual Claudia icon */}
{/* Shimmer effect overlay */}
{/* Orbiting particles */}
{[...Array(4)].map((_, i) => (
))}
);
}
// Alternative minimalist version
export function ClaudiaLogoMinimal({ size = 48, className = "" }: ClaudiaLogoProps) {
return (
{/* Simple orange circle background */}
{/* Subtle inner shadow for depth */}
{/* Letter C - clean and simple */}
C
{/* Single subtle pulse ring */}
);
}