"use client"; import { memo } from "react"; import { cls } from "@/lib/utils"; import MediaContent from "@/components/shared/MediaContent"; import type { InvertedBackground } from "@/providers/themeProvider/config/constants"; export type MediaStackItem = { imageSrc?: string; videoSrc?: string; imageAlt?: string; }; interface BentoMediaStackProps { items: [MediaStackItem, MediaStackItem, MediaStackItem]; useInvertedBackground: InvertedBackground; className?: string; } const BentoMediaStack = ({ items, className = "", }: BentoMediaStackProps) => { return (