import React from "react"; import { Card, CardContent } from "@/components/ui/card"; import { motion } from "framer-motion"; const photos = [ "/images/photo1.jpg", "/images/photo2.jpg", "/images/photo3.jpg", // Add more image paths here ]; export default function CrybabyGallery() { return (

Crybaby Gallery

A Melanie Martinez themed photo showcase

{photos.map((src, index) => ( {`Crybaby ))}
); }