summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/elements/Image.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/elements/Image.js b/src/components/elements/Image.js
index f06272b0..e85237ed 100644
--- a/src/components/elements/Image.js
+++ b/src/components/elements/Image.js
@@ -1,10 +1,10 @@
import { LazyLoadImage } from "react-lazy-load-image-component";
-import 'react-lazy-load-image-component/src/effects/blur.css';
+import 'react-lazy-load-image-component/src/effects/opacity.css';
export default function Image({ src, alt, className = "" }) {
return (
<LazyLoadImage
- effect="blur"
+ effect="opacity"
src={src || '/images/noimage.jpeg'}
alt={src ? alt : 'Image Not Found - Indoteknik'}
className={className}