'use client'; import { motion } from 'framer-motion'; interface GeometricShapeProps { className?: string; color?: string; } export function GeometricShapes({ className = '', color = '#C41E3A' }: GeometricShapeProps) { const shapes = [ { type: 'circle', size: 120, x: 10, y: 15, delay: 0 }, { type: 'square', size: 80, x: 80, y: 20, delay: 1 }, { type: 'triangle', size: 60, x: 70, y: 60, delay: 2 }, { type: 'circle', size: 40, x: 20, y: 70, delay: 3 }, { type: 'square', size: 50, x: 85, y: 75, delay: 4 } ]; return (
{shapes.map((shape, index) => ( ))}
); } export default GeometricShapes;