Skip to content

Commit

Permalink
address qa feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
alissacrane-cb committed Feb 13, 2025
1 parent 4d60b65 commit 2786227
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 5 deletions.
18 changes: 13 additions & 5 deletions apps/web/src/components/Developers/Verifications/Customers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Marquee } from 'apps/web/src/components/Developers/Shared/Marquee';
import icebreaker from 'apps/web/src/components/Developers/Verifications/icebreaker.svg';
import deform from 'apps/web/src/components/Developers/Verifications/deform.svg';
import gitcoin from 'apps/web/src/components/Developers/Verifications/gitcoin.svg';
import talentProtocol from 'apps/web/src/components/Developers/Verifications/talent-protocol.svg';
import Image, { StaticImageData } from 'next/image';

export function Customers() {
Expand All @@ -14,15 +15,22 @@ export function Customers() {
</Title>
<div className="relative flex w-full flex-col items-center justify-center overflow-hidden">
<Marquee className="[--duration:20s]" pauseOnHover>
<div className="p-4">
<div className="p-4 px-8">
<Image src={icebreaker as StaticImageData} alt="icebreaker" className="h-10 w-auto" />
</div>

<div className="p-4">
<Image src={deform as StaticImageData} alt="deform" className="h-10" />
<div className="p-4 px-8">
<Image src={deform as StaticImageData} alt="deform" className="h-10 w-auto" />
</div>
<div className="p-4">
<Image src={gitcoin as StaticImageData} alt="gitcoin" className="h-10" />
<div className="p-4 px-8">
<Image src={gitcoin as StaticImageData} alt="gitcoin" className="h-10 w-auto" />
</div>
<div className="p-4 px-8">
<Image
src={talentProtocol as StaticImageData}
alt="talentProtocol"
className="h-10 w-auto"
/>
</div>
</Marquee>
</div>
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2786227

Please sign in to comment.