"use client"; import { useRef } from "react"; import { useGSAP } from "@gsap/react"; import gsap from "gsap"; import { ScrollTrigger } from "gsap/ScrollTrigger"; gsap.registerPlugin(ScrollTrigger); export default function FilosofiaSection() { const sectionRef = useRef(null); const contentRef = useRef(null); useGSAP(() => { if (!contentRef.current) return; gsap.fromTo( Array.from(contentRef.current.children), { y: 40, opacity: 0 }, { y: 0, opacity: 1, duration: 0.8, stagger: 0.15, ease: "power3.out", scrollTrigger: { trigger: sectionRef.current, start: "top 70%", toggleActions: "play none none reverse", }, } ); }, { scope: sectionRef }); return (

La nostra idea

“La forma segue la funzione. La struttura la rende duratura.”

Solido come cemento armato, fluido come un open-space. Zero fronzoli, massima efficienza.

Inizia il Progetto
); }