708410bbf1
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>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
---
|
|
import Base from '../layouts/Base.astro';
|
|
import HeroSlider from '../components/home/HeroSlider.astro';
|
|
import InfoColumns from '../components/home/InfoColumns.astro';
|
|
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 MethodSteps from '../components/home/MethodSteps.astro';
|
|
import PartnersStrip from '../components/home/PartnersStrip.astro';
|
|
import T from '../components/content/T.astro';
|
|
import { t } from '../lib/content';
|
|
export const prerender = false;
|
|
---
|
|
<Base title={t('home.meta.title')}>
|
|
<HeroSlider />
|
|
<InfoColumns />
|
|
<FeatureBlocks />
|
|
<QuoteBanner />
|
|
<section class="section" style="padding-bottom:0">
|
|
<div class="section-heading">
|
|
<T tag="home.training.title" as="h2" />
|
|
<T tag="home.training.subtitle" as="p" />
|
|
</div>
|
|
</section>
|
|
<TrainingCards />
|
|
<ServicesGrid />
|
|
<MethodSteps />
|
|
<PartnersStrip />
|
|
</Base>
|