"use client"; import { useLocale } 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(); return (
{/* Top accent line */}
{/* Image Container */}
{/* Background pattern */}
{title} {/* Hover overlay */}
{/* Content */}
{/* Decorative line */}

{title}

{/* Bottom row */}
Batafsil {/* Arrow */}
); }