Complete Hubbly theme conversion: all pages rewritten with CSS variable theming

- 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
This commit is contained in:
root
2026-06-27 17:01:02 +02:00
parent 61bb70ac1d
commit c53a5a8a2c
68 changed files with 4708 additions and 4608 deletions
@@ -3,52 +3,60 @@
<div class="col-span-12 lg:col-span-9 lg:w-[96%]">
<div class="flex flex-col gap-y-4">
<x-content.content-card icon="music-icon" classes="border dark:border-gray-900">
<x-slot:title>
{{ setting('hotel_name') }} Radio
</x-slot:title>
<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>
<x-slot:under-title>
Radio is momenteel offline
</x-slot:under-title>
<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="px-2 text-sm space-y-4 dark:text-gray-200">
<div class="bg-gray-100 dark:bg-gray-800 rounded-lg p-8 text-center">
<div class="text-6xl mb-4">📻</div>
<h2 class="text-xl font-bold text-[var(--color-primary)] mb-2">Radio is Offline</h2>
<p class="text-gray-500">Onze radio is momenteel niet beschikbaar.</p>
<p class="text-sm text-gray-400 mt-2">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 text-[var(--color-primary)] hover:underline">
Bekijk het rooster
</a>
@if(setting('radio_applications_enabled') == '1')
<a href="{{ route('radio.apply') }}" class="block text-[var(--color-primary)] hover:underline">
Word DJ
</a>
@endif
<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>
</x-content.content-card>
</div>
</div>
<div class="col-span-12 lg:col-span-3 lg:w-[110%] space-y-4 lg:-ml-[32px]">
<x-content.content-card icon="info-icon" classes="border dark:border-gray-900">
<x-slot:title>
Radio Info
</x-slot:title>
<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>
<x-slot:under-title>
Over onze radio
</x-slot:under-title>
<div class="px-2 text-sm space-y-4 dark:text-gray-200">
<p>Onze radio is normaal gesproken 24/7 online met de beste muziek!</p>
<p class="text-xs text-gray-500">De radio kan tijdelijk offline zijn voor onderhoud.</p>
<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>
</x-content.content-card>
</div>
</x-app-layout>