@props([ 'slug', 'title', 'tagline', // what this tool/assessment is about 'steps' => [], // how to use it (array of short strings) 'confidential' => true, // show the confidentiality disclosure 'cta' => 'Start using the tool', ]) @php $cols = match (min(count($steps), 4)) { 1 => 'lg:grid-cols-1', 2 => 'lg:grid-cols-2', 3 => 'lg:grid-cols-3', default => 'lg:grid-cols-4', }; @endphp

Before you start

{{ $title }}

{{ $tagline }}

{{ $cta }}
{{-- The full guide, inline: every step visible at a glance --}} @if (count($steps))
@foreach ($steps as $i => $s)
{{ $i + 1 }}

{{ $s }}

@if (! $loop->last) @endif
@endforeach
@endif @if ($confidential)

Private and confidential: everything runs in your browser. We never see your numbers, and nothing is stored unless you choose to save or email your plan.

@endif