Avatars
  • componentes
  • /
  • avatars
  • /
  • avatar-2

avatar-2

  • Vista previa

    Image
    Image
    Image
  • Código

    import Image from 'next/image';
    
    const Avatar2 = () => {
      return (
        <div className="flex flex-col lg:flex-row lg:items-center gap-5">
          <div className="relative w-10 h-10 rounded-full">
            <Image
              src="https://res.cloudinary.com/jotredev/image/upload/v1697568580/ElementumUI/mujeres/feliz-mujer-madura-al-aire-libre_tsjdsm.webp"
              alt="Image"
              fill
              loading="lazy"
              blurDataURL="https://res.cloudinary.com/jotredev/image/upload/v1697568580/ElementumUI/mujeres/feliz-mujer-madura-al-aire-libre_tsjdsm.webp"
              className="object-cover rounded-full"
            />
          </div>
          <div className="relative w-12 h-12 rounded-full">
            <Image
              src="https://res.cloudinary.com/jotredev/image/upload/v1697568580/ElementumUI/mujeres/feliz-mujer-madura-al-aire-libre_tsjdsm.webp"
              alt="Image"
              fill
              loading="lazy"
              blurDataURL="https://res.cloudinary.com/jotredev/image/upload/v1697568580/ElementumUI/mujeres/feliz-mujer-madura-al-aire-libre_tsjdsm.webp"
              className="object-cover rounded-full"
            />
          </div>
          <div className="relative w-14 h-14 rounded-full">
            <Image
              src="https://res.cloudinary.com/jotredev/image/upload/v1697568580/ElementumUI/mujeres/feliz-mujer-madura-al-aire-libre_tsjdsm.webp"
              alt="Image"
              fill
              loading="lazy"
              blurDataURL="https://res.cloudinary.com/jotredev/image/upload/v1697568580/ElementumUI/mujeres/feliz-mujer-madura-al-aire-libre_tsjdsm.webp"
              className="object-cover rounded-full"
            />
          </div>
        </div>
      );
    };
    
    export default Avatar2;