feat(home): rimuove le sezioni Agenda e Team dalla pagina principale

Tolte da index.astro le sezioni <Agenda> e <TeamSection> con i relativi import.
I componenti restano nel codice (riutilizzabili altrove). Modifica isolata su
branch dedicato per valutazione col cliente.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-07-12 14:41:47 +02:00
parent 53af0ca00e
commit 708410bbf1
-4
View File
@@ -6,8 +6,6 @@ import FeatureBlocks from '../components/home/FeatureBlocks.astro';
import QuoteBanner from '../components/home/QuoteBanner.astro';
import TrainingCards from '../components/home/TrainingCards.astro';
import ServicesGrid from '../components/home/ServicesGrid.astro';
import Agenda from '../components/Agenda.astro';
import TeamSection from '../components/home/TeamSection.astro';
import MethodSteps from '../components/home/MethodSteps.astro';
import PartnersStrip from '../components/home/PartnersStrip.astro';
import T from '../components/content/T.astro';
@@ -27,8 +25,6 @@ export const prerender = false;
</section>
<TrainingCards />
<ServicesGrid />
<Agenda />
<TeamSection />
<MethodSteps />
<PartnersStrip />
</Base>