"use client"; import { useLocale, useTranslations } from "next-intl"; import Image from "next/image"; import Link from "next/link"; interface ProductCardProps { title: string; image: string; slug: string; getProduct: () => void; } export default function ProductCard({ title, image, slug, getProduct, }: ProductCardProps) { const locale = useLocale(); const t = useTranslations(); return (
{/* Top accent line */}
{/* Image Container */}
{/* Background pattern */}
{title} {/* Hover overlay */}
{/* Content */}
{/* Decorative line */}

{title}

{/* Bottom row */}
{ t("home.services.learnmore")} {/* Arrow */}
); }