Skip to content

Commit

Permalink
Fixing client logos for consulting pages
Browse files Browse the repository at this point in the history
  • Loading branch information
amankumarrr committed Oct 4, 2024
1 parent 2d07d39 commit 62ef1c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/blocks/clientLogos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const clientsData = layoutData.clients.clientsList;

export const ClientLogos = () => {
return (
<div className="flex flex-wrap justify-center">
<div className="flex flex-wrap justify-center gap-4">
{clientsData.length &&
clientsData.map((client) => (
<Image
Expand All @@ -17,7 +17,7 @@ export const ClientLogos = () => {
width={200}
// commented out to test whether this is breaking images on the homepage see #2368
//sizes="20vw"
className="my-4 max-w-full rounded-lg"
className="max-w-full rounded-lg"
/>
))}
</div>
Expand Down

0 comments on commit 62ef1c7

Please sign in to comment.