@php $stats = [ ['value' => __('home.One desk'), 'hint' => __('home.Brief, files, and canvas')], ['value' => __('home.Real files'), 'hint' => __('home.Markup you can open')], ['value' => __('home.Pack credits'), 'hint' => __('home.Spend only on generation')], ['value' => __('home.Your domain'), 'hint' => __('home.When a pack unlocks it')], ]; $pillars = [ [ 'id' => 'brief', 'icon' => 'document-text', 'kicker' => __('messages.Brief'), 'tone' => 'cyan', 'title' => __('home.A shared desk for every brief'), 'copy' => __('home.Centralize the prompt, the file tree, and the live preview so nothing lives in a side chat.'), 'mock' => 'brief', ], [ 'id' => 'canvas', 'icon' => 'lab', 'kicker' => __('messages.Canvas'), 'tone' => 'violet', 'title' => __('home.Connect Lab to the rest of the stack'), 'copy' => __('home.Import from GitHub, spend pack credits, and keep generated files in the workspace.'), 'mock' => 'page', ], [ 'id' => 'files', 'icon' => 'folder', 'kicker' => __('messages.Files'), 'tone' => 'orange', 'title' => __('home.Turns that work like a studio partner'), 'copy' => __('home.Ask for a landing, a shop grid, or a docs page. Lab writes the screens and you review them.'), 'mock' => 'files', ], [ 'id' => 'publish', 'icon' => 'globe-alt', 'kicker' => __('messages.Publish'), 'tone' => 'blue', 'title' => __('home.Oversight for every publish'), 'copy' => __('home.Preview first. Attach a domain when you are ready. Roll a project back by editing the files.'), 'mock' => 'publish', ], ]; $toneClass = [ 'cyan' => 'border-cyan-500/30 bg-cyan-500/10 text-cyan-600 dark:text-cyan-400', 'violet' => 'border-violet-500/30 bg-violet-500/10 text-violet-600 dark:text-violet-400', 'orange' => 'border-orange-500/30 bg-orange-500/10 text-orange-600 dark:text-orange-400', 'blue' => 'border-blue-500/30 bg-blue-500/10 text-blue-600 dark:text-blue-400', ]; @endphp
@include('home.partials.badge', ['label' => __('home.Introducing Lab')])

{{ __('home.The workshop sites need to run from a single brief') }}

@foreach ($pillars as $index => $pillar)
{{ $pillar['kicker'] }}

{{ $pillar['title'] }}

{{ $pillar['copy'] }}

{{ __('home.Learn more') }}
@if (in_array($pillar['mock'], ['brief', 'files'], true))
@include('home.partials.desk', ['tone' => $pillar['mock']])
@elseif ($pillar['mock'] === 'page')
@include('home.partials.site')
@else
  • {{ __('home.Domain') }} studio.lab
  • {{ __('home.GitHub') }} {{ __('home.Ready') }}
  • {{ __('messages.Publish') }}
@endif
@endforeach