{{ __('studio.Starred') }}

@if ($starredProjects->isNotEmpty())

{{ __('studio.Projects you marked as favorites.') }}

@endif
@if ($starredProjects->isEmpty())
{{ __('studio.Browse projects') }}
@else
@foreach ($starredProjects as $project) @include('livewire.studio.partials.projectCard', [ 'project' => $project, 'stamp' => $project->starred_at, 'canExport' => $canExport, ]) @endforeach
@endif @include('livewire.studio.partials.projectModals')