@@ -219,14 +220,30 @@ function MemoriesScreen() {
{/* Photo grid */}
{[
- { bg: "bg-rose-200", emoji: "😊", caption: "First smile" },
- { bg: "bg-amber-200", emoji: "🛁", caption: "Bath time" },
- { bg: "bg-violet-200", emoji: "🏆", caption: "4 months!" },
- { bg: "bg-green-200", emoji: "👨👩👧", caption: "With Nani" },
+ { src: "/images/tia-portrait.jpg",
+ pos: "top center",
+ caption: "First smile 😊" },
+ { src: "https://images.unsplash.com/photo-1555252333-9f8e92e65df9?w=300&h=300&fit=crop&auto=format&q=80",
+ pos: "center",
+ caption: "Bath time 🛁" },
+ { src: "/images/family-illustration.jpg",
+ pos: "top center",
+ caption: "With family 🌸" },
+ { src: "https://images.unsplash.com/photo-1519689680058-324335c77eba?w=300&h=300&fit=crop&auto=format&q=80",
+ pos: "center",
+ caption: "8 months! 🎉" },
].map(photo => (
-
-
{photo.emoji}
-
{photo.caption}
+
+ {/* eslint-disable-next-line @next/next/no-img-element */}
+

+
+ {photo.caption}
+
))}