import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { motion } from "framer-motion"; const familyVideos = [ { title: "AI-Animated Video 1", url: "https://youtube.com/shorts/pxwjmAAafKM", description: "Mom glancing gently with a subtle smile, recreated with animation." }, // Add more video entries here with titles and descriptions ]; export default function FamilyAIVideoGallery() { return (

AI Family Photo Animations

Source Family Photo
{familyVideos.map((video, index) => (

{video.title}

{video.description}

))}
); }