File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ const AboutUs = () => {
21
21
22
22
23
23
< div className = "flex flex-col lg:flex-row items-center mb-10 px-10 gap-7 space-x-7" >
24
- < img src = { image } alt = "Andela Engineers" className = "w-[500px] h-auto rounded-lg shadow-md mb-6 lg:mb-0" />
24
+ < img src = { image } alt = "Andela Engineers" className = "w-[500px] h-auto rounded-lg shadow-md mb-6 lg:mb-0" loading = "lazy" />
25
25
26
26
< div className = 'max-w-2xl px-10' >
27
27
< h1 className = 'text-3xl sm:text-4xl md:text-5xl font-bold mb-4 leading-tight dark:text-white' >
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ import { toast } from 'react-toastify';
34
34
const BlogCard = ( { blog } : { blog : Blog } ) => (
35
35
< div key = { blog . id } className = "bg-gray-200 dark:bg-dark-frame-bg dark:text-white text-primary shadow-lg rounded-lg cursor-pointer hover:shadow-xl transition duration-300" >
36
36
< Link to = { `/blogs/${ blog . id } ` } >
37
- < img src = { blog . coverImage } alt = { blog . title } className = "w-full h-40 object-cover mb-4" />
37
+ < img src = { blog . coverImage } alt = { blog . title } className = "w-full h-40 object-cover mb-4" loading = "lazy" />
38
38
</ Link >
39
39
< div className = "p-3" >
40
40
< Link to = { `/blogs/${ blog . id } ` } >
You can’t perform that action at this time.
0 commit comments