"use client"; import CardList from "@/components/cardStack/CardList"; import Tag from "@/components/shared/Tag"; import MediaContent from "@/components/shared/MediaContent"; import { cls, shouldUseInvertedText } from "@/lib/utils"; import { useTheme } from "@/providers/themeProvider/ThemeProvider"; import type { LucideIcon } from "lucide-react"; import type { ButtonConfig, CardAnimationType, TitleSegment } from "@/components/cardStack/types"; import type { TextboxLayout, InvertedBackground } from "@/providers/themeProvider/config/constants"; type MediaProps = | { imageSrc: string; imageAlt?: string; videoSrc?: never; videoAriaLabel?: never; } | { videoSrc: string; videoAriaLabel?: string; imageSrc?: never; imageAlt?: never; }; type BlogCard = MediaProps & { id: string; title: string; author: string; description: string; tags: string[]; onBlogClick?: () => void; }; interface BlogCardElevenProps { blogs: BlogCard[]; animationType: CardAnimationType; title: string; titleSegments?: TitleSegment[]; description: string; tag?: string; tagIcon?: LucideIcon; buttons?: ButtonConfig[]; textboxLayout: TextboxLayout; useInvertedBackground: InvertedBackground; ariaLabel?: string; className?: string; containerClassName?: string; cardClassName?: string; textBoxTitleClassName?: string; textBoxDescriptionClassName?: string; textBoxClassName?: string; textBoxTagClassName?: string; textBoxButtonContainerClassName?: string; textBoxButtonClassName?: string; textBoxButtonTextClassName?: string; titleImageWrapperClassName?: string; titleImageClassName?: string; cardContentClassName?: string; cardTitleClassName?: string; authorClassName?: string; cardDescriptionClassName?: string; tagsContainerClassName?: string; tagClassName?: string; mediaWrapperClassName?: string; mediaClassName?: string; } const BlogCardEleven = ({ blogs, animationType, title, titleSegments, description, tag, tagIcon, buttons, textboxLayout, useInvertedBackground, ariaLabel = "Blog section", className = "", containerClassName = "", cardClassName = "", textBoxTitleClassName = "", textBoxDescriptionClassName = "", textBoxClassName = "", textBoxTagClassName = "", textBoxButtonContainerClassName = "", textBoxButtonClassName = "", textBoxButtonTextClassName = "", titleImageWrapperClassName = "", titleImageClassName = "", cardContentClassName = "", cardTitleClassName = "", authorClassName = "", cardDescriptionClassName = "", tagsContainerClassName = "", tagClassName = "", mediaWrapperClassName = "", mediaClassName = "", }: BlogCardElevenProps) => { const theme = useTheme(); const shouldUseLightText = shouldUseInvertedText(useInvertedBackground, theme.cardStyle); return ( {blogs.map((blog) => (

{blog.title}{" "} by {blog.author}

{blog.tags.map((tagText, index) => ( ))}

{blog.description}

))}
); }; BlogCardEleven.displayName = "BlogCardEleven"; export default BlogCardEleven;