+ {Array.from({ length: rows }).map((_, rowIndex) => (
+
+ {Array.from({ length: cols }).map((_, colIndex) => {
+ const index = (rowIndex * cols + colIndex) % stargazers.length;
+ const stargazer = stargazers[index];
+ const delay = (rowIndex * cols + colIndex) * 0.05;
+
+ return (
+
+
+
+ );
+ })}
+
+ ))}
+