'use client' import { motion } from 'framer-motion' import { Cloud } from 'lucide-react' interface ProductShowcaseProps { type: 'mini' | 'studio' | 'cloud' className?: string } const PRODUCT_IMAGES = { mini: 'https://www.apple.com/newsroom/images/2024/10/apples-new-mac-mini-apples-new-mac-mini-is-more-mighty-more-mini-and-built-for-apple-intelligence/article/Apple-Mac-mini-hero_big.jpg.large.jpg', studio: 'https://www.apple.com/newsroom/images/2025/03/apple-unveils-new-mac-studio-the-most-powerful-mac-ever/article/Apple-Mac-Studio-front-250305_big.jpg.large.jpg', } export default function ProductShowcase({ type, className = '' }: ProductShowcaseProps) { if (type === 'cloud') { return (
) } return (
{/* eslint-disable-next-line @next/next/no-img-element */} {type
) }