* feat: add Dossiê vivo motion to the public site Introduce a focal Home opening, chapter index, and restrained continuity reveals while keeping reduced-motion and visual baselines intact. Co-authored-by: Cursor <cursoragent@cursor.com> * test: refresh visual baselines from CI Ubuntu screenshots Co-authored-by: Cursor <cursoragent@cursor.com> --------- Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
@extends('layouts.public')
|
|
|
|
@section('content')
|
|
@php
|
|
$chapters = [
|
|
['id' => 'hero-heading', 'label' => 'Capa'],
|
|
['id' => 'manifesto-heading', 'label' => 'Manifesto'],
|
|
];
|
|
|
|
if ($content->featuredServices->isNotEmpty()) {
|
|
$chapters[] = ['id' => 'services-heading', 'label' => 'Serviços'];
|
|
}
|
|
|
|
if ($content->featuredCases->isNotEmpty()) {
|
|
$chapters[] = ['id' => 'portfolio-heading', 'label' => 'Portfólio'];
|
|
}
|
|
|
|
$chapters[] = ['id' => 'method-heading', 'label' => 'Método'];
|
|
|
|
if ($content->testimonials->isNotEmpty()) {
|
|
$chapters[] = ['id' => 'testimonials-heading', 'label' => 'Depoimentos'];
|
|
}
|
|
|
|
$chapters[] = ['id' => 'positioning-heading', 'label' => 'A Amare'];
|
|
$chapters[] = ['id' => 'final-cta-heading', 'label' => 'Próximo passo'];
|
|
@endphp
|
|
|
|
<x-home.chapter-index :chapters="$chapters" />
|
|
|
|
<x-home.hero :settings="$content->settings" />
|
|
<x-home.manifesto :settings="$content->settings" />
|
|
<x-home.services :services="$content->featuredServices" />
|
|
<x-home.portfolio :cases="$content->featuredCases" />
|
|
<x-home.method :settings="$content->settings" />
|
|
<x-home.testimonials :testimonials="$content->testimonials" />
|
|
<x-home.positioning :settings="$content->settings" />
|
|
<x-home.final-cta :settings="$content->settings" />
|
|
@endsection
|