Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/partners/farmvaidya.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/components/Partners.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,17 @@ export default function Partners() {
</div>
</div>

<div className="flex flex-col items-center">
<h4 className="opacity-50 mt-4 md:mt-[26.6px] text-sm md:text-xl">Sponsor</h4>
<div className="w-[140px] md:w-[220px] h-[90px] md:h-[140px] flex items-center justify-center">
<img
src="./partners/farmvaidya.jpeg"
Copy link

Copilot AI Jan 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The image source path is inconsistent with other partner images in this file. Other local images use an absolute path starting with "/" (e.g., "/partners/gitam-logo-black.png", "/partners/ananta-logo-black.png"), but this uses a relative path "./partners/farmvaidya.jpeg". For consistency and to avoid potential path resolution issues, this should use "/partners/farmvaidya.jpeg" instead.

Suggested change
src="./partners/farmvaidya.jpeg"
src="/partners/farmvaidya.jpeg"

Copilot uses AI. Check for mistakes.
className="max-w-full max-h-full object-contain"
alt="GCGC"
Copy link

Copilot AI Jan 2, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The alt text is incorrect. It says "GCGC" but this is the Farmvaidya sponsor logo. The alt text should describe the actual partner being displayed, which is "Farmvaidya".

Suggested change
alt="GCGC"
alt="Farmvaidya"

Copilot uses AI. Check for mistakes.
/>
</div>
</div>

{/* VDC - Sponsor */}
<div className="flex flex-col items-center">
<h4 className="opacity-50 mt-4 md:mt-[26.6px] text-sm md:text-xl">Sponsor</h4>
Expand Down
Loading