+ {images.slice(0, 4).map((image, i) => {
+ const isLastImg = images.length - 1 === i;
+ const isBlurredButton = !isLastImg && images.length > 4 && i === 3;
+
+ if (isBlurredButton) {
+ // TODO: styling and implementation
+ return
;
+ }
+
+ return (
+
+ );
+ })}
+
+ );
+};
+
+export const Gallery: React.FC