import React, { FC, useState, useCallback, useRef, useEffect } from 'react'; import { motion } from 'framer-motion'; import { Moon, Zap, LayoutGrid, Globe } from 'lucide-react'; interface DecorativeImageProps { src: string; alt: string; className: string; delay: number; x: number; y: number; } /** * Decorative image component for the About section. */ export const DecorativeImage: FC = ({ src, alt, className, delay, x, y }) => { return ( ); };