import React from 'react'; import { cn } from "../../lib/utils"; export interface SeasonCardProps { title: string; subtitle: string; description: string; imageSrc: string; imageAlt?: string; className?: string; } interface SeasonalHoverCardsProps { cards: SeasonCardProps[]; className?: string; } const SeasonCard = ({ title, subtitle, description, imageSrc, imageAlt, className, }: SeasonCardProps) => { return (
{imageAlt

{title}

{subtitle}

{description}

); }; export function SeasonalHoverCards({ cards, className, }: SeasonalHoverCardsProps) { return (
{cards.map((card, index) => ( ))}
); }