import { Eye, Glasses, HeartHandshake, LifeBuoy, Sparkles, Wrench } from "lucide-react"; import { motion } from "framer-motion"; import type { Messages } from "@/messages"; import AnimatedSection from "./AnimatedSection"; import SectionHeader from "./SectionHeader"; const icons = [Eye, Wrench, Glasses, Sparkles, HeartHandshake, LifeBuoy]; export default function ServicesSection({ t }: { t: Messages }) { return (
{t.services.items.map((item, index) => { const Icon = icons[index]; return (

{item.title}

{item.text}

); })}
); }