import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/Card"; import Image from "next/image"; interface CustomCardProps { title: string; description: string; imageSrc: string; imageAlt: string; } export function CustomCard({ title, description, imageSrc, imageAlt }: CustomCardProps) { return (
{imageAlt}
{title}

{description}

); }