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>
This commit is contained in:
@@ -1,6 +1,32 @@
|
||||
@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" />
|
||||
|
||||
Reference in New Issue
Block a user