diff --git a/src/components/marketing/PhoneMockup.tsx b/src/components/marketing/PhoneMockup.tsx index fdea8ee..a3c507e 100644 --- a/src/components/marketing/PhoneMockup.tsx +++ b/src/components/marketing/PhoneMockup.tsx @@ -36,17 +36,18 @@ function HomeScreen() { {/* Greeting */}

Good morning 👋

-

How is Arjun doing today?

+

How is Viradhya doing today?

{/* Baby card */}
-
- 👶 +
+ {/* eslint-disable-next-line @next/next/no-img-element */} + Viradhya
-

Arjun

-

4 months

+

Viradhya

+

8 months

@@ -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} +
+ {photo.caption} +
))}