'use client' import { useRef, useState } from 'react' import { useLang } from '@/context/LangContext' export default function BrownLeaf() { const { t } = useLang() const bl = t.brownLeaf const [sliderVal, setSliderVal] = useState(50) const containerRef = useRef(null) const proofs = [ { icon: ( ), title: bl.proof1title, desc: bl.proof1desc, color: '#e07a50', }, { icon: ( ), title: bl.proof2title, desc: bl.proof2desc, color: '#56a074', }, { icon: ( ), title: bl.proof3title, desc: bl.proof3desc, color: '#3d7a56', }, ] return (
{/* Header */}

{bl.tag}

{bl.headline}
{bl.sub}

{bl.desc}

{/* Before / After Slider */}
{/* BEFORE – brown/unhealthy (always visible) */}
) }