Skip to content

Commit

Permalink
remove redundant properties
Browse files Browse the repository at this point in the history
  • Loading branch information
jewlexx committed Nov 10, 2024
1 parent 8250ba2 commit 9c0024c
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/app/_components/Project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,7 @@ function HeroImage({ link }: Props) {
);
}

return (
<Image
placeholder="blur"
src={link.image.src}
alt={link.label}
width={link.image.width}
height={link.image.height}
blurDataURL={link.image.blurDataURL}
/>
);
return <Image placeholder="blur" src={link.image} alt={link.label} width={1200} height={630} />;
}

export default function Project(props: Props) {
Expand Down

0 comments on commit 9c0024c

Please sign in to comment.