Landing Page Theme

@php $lightThemes = ['minimal-white', 'soft-gray', 'warm-beige', 'fresh-green', 'calm-blue', 'elegant-purple', 'sunny-yellow', 'rose-pink', 'sage-green', 'lavender', 'peach', 'mint']; @endphp @foreach($this->getBackgroundPresets() as $key => $preset) @if(in_array($key, $lightThemes)) @endif @endforeach
@php $darkThemes = ['midnight-blue', 'charcoal', 'dark-forest', 'obsidian', 'deep-purple']; @endphp @foreach($this->getBackgroundPresets() as $key => $preset) @if(in_array($key, $darkThemes)) @endif @endforeach
@if($landingBackgroundPreset) @php $preset = $this->getBackgroundPresets()[$landingBackgroundPreset] ?? null; @endphp @if($preset)
@endif @else
Select a theme to preview
@endif