Skip to content

Commit b29b8d6

Browse files
committed
feat(components): add marquee images height and width
1 parent fd958ed commit b29b8d6

1 file changed

Lines changed: 30 additions & 2 deletions

File tree

src/app/_page/_components/Marquee/logosContainer.tsx

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,39 @@
33
const LogosContainer = () => (
44
<div className="z-10 flex h-[50px] min-w-full flex-none items-center justify-around gap-x-4">
55
<div className="flex h-[50px] w-[100px] justify-center">
6-
<img loading="lazy" decoding="async" src="./logos/aws.png" alt="AWS" />
6+
<img
7+
loading="lazy"
8+
decoding="async"
9+
height="50px"
10+
width="auto"
11+
src="./logos/aws.png"
12+
alt="AWS"
13+
/>
714
</div>
815
<div className="flex h-[50px] w-[100px] justify-center">
916
<img
17+
height="50px"
18+
width="auto"
1019
loading="lazy"
1120
decoding="async"
1221
src="./logos/mongo.png"
1322
alt="Mongodb"
1423
/>
1524
</div>
1625
<div className="flex h-[50px] w-[100px] justify-center">
17-
<img loading="lazy" decoding="async" src="./logos/jest.png" alt="Jest" />
26+
<img
27+
loading="lazy"
28+
decoding="async"
29+
height="50px"
30+
width="auto"
31+
src="./logos/jest.png"
32+
alt="Jest"
33+
/>
1834
</div>
1935
<div className="flex h-[50px] w-[100px] justify-center">
2036
<img
37+
height="50px"
38+
width="auto"
2139
loading="lazy"
2240
decoding="async"
2341
src="./logos/nodejs.png"
@@ -26,6 +44,8 @@ const LogosContainer = () => (
2644
</div>
2745
<div className="flex h-[50px] w-[100px] justify-center">
2846
<img
47+
height="50px"
48+
width="auto"
2949
loading="lazy"
3050
decoding="async"
3151
src="./logos/nextjs.png"
@@ -34,6 +54,8 @@ const LogosContainer = () => (
3454
</div>
3555
<div className="flex h-[50px] w-[100px] justify-center">
3656
<img
57+
height="50px"
58+
width="auto"
3759
loading="lazy"
3860
decoding="async"
3961
src="./logos/docker.png"
@@ -42,6 +64,8 @@ const LogosContainer = () => (
4264
</div>
4365
<div className="flex h-[50px] w-[100px] justify-center">
4466
<img
67+
height="50px"
68+
width="auto"
4569
loading="lazy"
4670
decoding="async"
4771
src="./logos/tailwind.png"
@@ -50,6 +74,8 @@ const LogosContainer = () => (
5074
</div>
5175
<div className="flex h-[50px] w-[100px] justify-center">
5276
<img
77+
height="50px"
78+
width="auto"
5379
loading="lazy"
5480
decoding="async"
5581
src="./logos/postgresql.png"
@@ -58,6 +84,8 @@ const LogosContainer = () => (
5884
</div>
5985
<div className="flex h-[50px] w-[100px] justify-center">
6086
<img
87+
height="50px"
88+
width="auto"
6189
loading="lazy"
6290
decoding="async"
6391
src="./logos/playwright.png"

0 commit comments

Comments
 (0)