"use client" import { Card, CardContent } from "@/components/ui/card" import { WandIcon, PaletteIcon, ImageIcon, DownloadIcon } from "lucide-react" import { useTranslations } from "next-intl" interface FeaturesSectionProps { locale: string } export default function FeaturesSection({ locale }: FeaturesSectionProps) { const t = useTranslations("features") const features = [ { icon: WandIcon, title: t("smartKeywords.title"), description: t("smartKeywords.description"), gradient: "from-purple-500 to-pink-500", }, { icon: PaletteIcon, title: t("stylizedFilters.title"), description: t("stylizedFilters.description"), gradient: "from-blue-500 to-cyan-500", }, { icon: ImageIcon, title: t("objectManipulation.title"), description: t("objectManipulation.description"), gradient: "from-green-500 to-emerald-500", }, { icon: DownloadIcon, title: t("highResolution.title"), description: t("highResolution.description"), gradient: "from-orange-500 to-red-500", }, ] return (

{t("title")}

{t("subtitle")}

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
) }