* 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>
16 lines
362 B
PHP
16 lines
362 B
PHP
@props([
|
|
'chapters' => [],
|
|
])
|
|
|
|
@if (count($chapters) > 0)
|
|
<nav data-chapter-index aria-label="Índice de capítulos">
|
|
@foreach ($chapters as $chapter)
|
|
<a href="#{{ $chapter['id'] }}">{{ $chapter['label'] }}</a>
|
|
@endforeach
|
|
</nav>
|
|
|
|
<div data-chapter-progress aria-hidden="true">
|
|
<span></span>
|
|
</div>
|
|
@endif
|