// Logo + petits icônes SVG simples
const LogoMark = ({ size = 36, color = '#c9a675', color2 = '#d9d9d9' }) => (
);
const Arrow = ({ size = 14 }) => (
);
const Plus = ({ size = 14 }) => (
);
const Check = ({ size = 14 }) => (
);
// Services icons — lignes minimalistes
const SvcIcon = ({ name }) => {
const props = { width: 32, height: 32, viewBox: "0 0 32 32", fill: "none", stroke: "currentColor", strokeWidth: "1.2" };
switch (name) {
case '01': return ( // estimation
);
case '02': return ( // division
);
case '03': return ( // lotissement
);
case '04': return ( // promotion
);
case '05': return ( // commercialisation
);
case '06': return ( // achat direct
);
default: return null;
}
};
const ChevronDown = ({ size = 14 }) => (
);
Object.assign(window, { LogoMark, Arrow, Plus, Check, SvcIcon, ChevronDown });