import { Hammer, Truck, ShieldCheck } from "lucide-react"; const features = [ { icon: Hammer, title: "Ambachtelijk Maatwerk", description: "Elk product wordt op maat gemaakt in onze eigen werkplaats. Geen standaardwerk, maar vakmanschap tot in detail.", }, { icon: Truck, title: "Snelle Levering", description: "Korte doorlooptijden dankzij ons efficiƫnte productieproces. Van offerte tot montage, wij leveren op tijd.", }, { icon: ShieldCheck, title: "Hoogste Kwaliteit", description: "Wij werken uitsluitend met hoogwaardig staal en duurzame coatings. Gebouwd om generaties mee te gaan.", }, ]; export function Features() { return (

Waarom Proinn

Gebouwd op vakmanschap

{features.map((feature) => (

{feature.title}

{feature.description}

))}
); }