import Link from "next/link"; import { ImagePlaceholder } from "@/components/ImagePlaceholder"; import type { ImageMood } from "@/lib/angebote"; type AngebotCardProps = { href: string; title: string; tagline: string; mood: ImageMood; imageSrc?: string; imageAlt?: string; size?: "default" | "large"; }; export function AngebotCard({ href, title, tagline, mood, imageSrc, imageAlt, size = "default", }: AngebotCardProps) { return (
{tagline}
Mehr erfahren