bettered pageindex performances

This commit is contained in:
2026-04-09 17:50:15 +02:00
parent c7011c5574
commit 8fdf2e47a2
10 changed files with 62 additions and 84 deletions
+2 -16
View File
@@ -1,25 +1,11 @@
"use client";
import { useGsapScrollTrigger } from "@/components/hooks/useGsapScrollTrigger";
import HeroSection from "@/components/sections/HeroSection";
import ApproccioSection from "@/components/sections/ApproccioSection";
import BeforeAfterSection from "@/components/sections/BeforeAfterSection";
import ServicesSection from "@/components/sections/ServicesSection";
import AboutSection from "@/components/sections/AboutSection";
import FilosofiaSection from "@/components/sections/FilosofiaSection";
import CtaSection from "@/components/sections/CtaSection";
import HomeSections from "@/components/HomeSections";
export default function Home() {
useGsapScrollTrigger();
return (
<div className="snap-container">
<HeroSection />
<ApproccioSection />
<BeforeAfterSection />
<ServicesSection />
<AboutSection />
<FilosofiaSection />
<CtaSection />
<HomeSections />
</div>
);
}