Skip to content

Commit

Permalink
devfolio integrations done
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityyaX committed Mar 25, 2024
1 parent a273949 commit 7575fab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/Module/General.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -329,8 +329,8 @@ const TeamInfo = [
];

const titleSponsor = [{src: twenty}];
const platinumSponsor = [{src: seventeen}, {src: fire}, {src: "https://s3.ap-south-1.amazonaws.com/innohacks3.0/polygon-removebg-preview.png"}];
const goldSponsor = [{src: "https://s3.ap-south-1.amazonaws.com/innohacks3.0/images-removebg-preview.png"}];
const platinumSponsor = [{src: seventeen,alt:"images"}, {src: fire,alt:"images"}, {src: "https://s3.ap-south-1.amazonaws.com/innohacks3.0/polygon-removebg-preview.png",alt:"polygon"},{src:"https://s3.ap-south-1.amazonaws.com/innohacks3.0/devfolio-removebg-preview.png",alt:"devfolio"}];
const goldSponsor = [{src: "https://s3.ap-south-1.amazonaws.com/innohacks3.0/images-removebg-preview.png",alt:"replit"}];
const silverSponsor = [{src: eight}, {src: first}, {src: second}, {src: sixteen},
{src: forth}, {src: fifth}, {src: sixth},
{src: seventh}, {src: nine}, {src: twelve},
Expand Down
6 changes: 3 additions & 3 deletions src/containers/Home/HomePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export default function HomePage() {
md={6}
>
<div className="sponsor-bg">
<img src={item.src} width={200} alt="" />
<img src={item.src} width={200} />
</div>
</Col>
))}
Expand Down Expand Up @@ -392,7 +392,7 @@ export default function HomePage() {
md={6}
>
<div className="sponsor-bg">
<img src={item.src} width={180} alt="" />
<img src={item.src} width={180} alt="polygon" />
</div>
</Col>
))}
Expand All @@ -411,7 +411,7 @@ export default function HomePage() {
md={6}
>
<div className="sponsor-bg">
<img src={item.src} width={180} alt="" />
<img src={item.src} width={180} alt={item.alt} />
</div>
</Col>
))}
Expand Down

0 comments on commit 7575fab

Please sign in to comment.