Save workspace changes

This commit is contained in:
2026-04-18 17:02:56 +02:00
parent f02ea9a711
commit 87d60af5a9
4220 changed files with 1388603 additions and 1554 deletions

View File

@@ -0,0 +1,13 @@
<div class="max-w-4xl mx-auto py-12 text-center">
@if(isset($title))
<h1 class="text-3xl font-extrabold text-white">{{ $title }}</h1>
@endif
@if(isset($subtitle))
<p class="mt-3 text-sm text-neutral-300">{{ $subtitle }}</p>
@endif
@if($slot->isNotEmpty())
<div class="mt-6">{{ $slot }}</div>
@endif
</div>