You've already forked Atomcms-edit
c53a5a8a2c
- Converted all views from Dusk components (x-content.content-card, x-form.*) to inline Hubbly style - All pages use consistent card pattern: rounded-lg, gradient headers, color-mix borders - Added Hubbly-style homepage with 2-column layout, login card, swiper news carousel - Rewrote navigation with Alpine.js dropdowns, CSS variable colors, Hubbly assets - Updated profile page with Hubbly cards, fixed data bugs (friend/guild relationships) - Rewrote register page to match Hubbly layout: banner header, avatar preview with Frank GIF, 2-column form, avatar carousel selector, border-4 inputs - Rewrote login, settings, help center, radio, applications, utility pages - All colors use CSS variables controlled by Filament theme editor - Added Hubbly assets: banner, Frank GIF, navigation icons, online badge - Removed all dependencies on x-content.* and x-form.* components
63 lines
3.0 KiB
PHP
Executable File
63 lines
3.0 KiB
PHP
Executable File
<x-app-layout>
|
||
@push('title', 'Radio')
|
||
|
||
<div class="col-span-12 lg:col-span-9 lg:w-[96%]">
|
||
<div class="flex flex-col gap-y-4">
|
||
<div class="rounded-lg overflow-hidden" style="background-color: var(--color-surface); border: 1px solid color-mix(in srgb, var(--color-text-muted) 15%, transparent);">
|
||
<div class="relative w-full" style="background: linear-gradient(140deg, var(--color-primary) 0%, color-mix(in srgb, var(--color-primary) 80%, black) 100%);">
|
||
<div class="flex items-center h-full px-4 py-3 gap-3">
|
||
<div class="w-8 h-8 rounded-full flex items-center justify-center text-lg shadow-lg" style="background-color: color-mix(in srgb, var(--color-primary) 30%, transparent);">
|
||
📻
|
||
</div>
|
||
<div>
|
||
<p class="text-white font-bold text-sm">{{ setting('hotel_name') }} Radio</p>
|
||
<p class="text-xs" style="color: rgba(255,255,255,0.8)">Radio is momenteel offline</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="p-4 text-sm space-y-4" style="color: var(--color-text)">
|
||
<div class="rounded-lg p-8 text-center" style="background-color: color-mix(in srgb, var(--color-background) 50%, transparent);">
|
||
<div class="text-6xl mb-4">📻</div>
|
||
<h2 class="text-xl font-bold mb-2" style="color: var(--color-primary)">Radio is Offline</h2>
|
||
<p style="color: var(--color-text-muted)">Onze radio is momenteel niet beschikbaar.</p>
|
||
<p class="text-sm mt-2" style="color: var(--color-text-muted)">Kom later terug om te luisteren naar onze geweldige DJ's!</p>
|
||
|
||
<div class="mt-6 space-y-2">
|
||
<a href="{{ route('radio.rooster') }}" class="block" style="color: var(--color-primary); text-decoration: underline;">
|
||
Bekijk het rooster
|
||
</a>
|
||
@if(setting('radio_applications_enabled') == '1')
|
||
<a href="{{ route('radio.apply') }}" class="block" style="color: var(--color-primary); text-decoration: underline;">
|
||
Word DJ
|
||
</a>
|
||
@endif
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="col-span-12 lg:col-span-3 lg:w-[110%] space-y-4 lg:-ml-[32px]">
|
||
<div class="rounded-lg overflow-hidden" style="background-color: var(--color-surface); border: 1px solid color-mix(in srgb, var(--color-text-muted) 15%, transparent);">
|
||
<div class="relative w-full" style="background: linear-gradient(140deg, var(--color-primary) 0%, color-mix(in srgb, var(--color-primary) 80%, black) 100%);">
|
||
<div class="flex items-center h-full px-4 py-3 gap-3">
|
||
<div class="w-8 h-8 rounded-full flex items-center justify-center text-lg shadow-lg" style="background-color: color-mix(in srgb, var(--color-primary) 30%, transparent);">
|
||
ℹ️
|
||
</div>
|
||
<div>
|
||
<p class="text-white font-bold text-sm">Radio Info</p>
|
||
<p class="text-xs" style="color: rgba(255,255,255,0.8)">Over onze radio</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="p-4 text-sm space-y-4" style="color: var(--color-text)">
|
||
<p>Onze radio is normaal gesproken 24/7 online met de beste muziek!</p>
|
||
<p class="text-xs" style="color: var(--color-text-muted)">De radio kan tijdelijk offline zijn voor onderhoud.</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</x-app-layout>
|