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
25 lines
889 B
PHP
Executable File
25 lines
889 B
PHP
Executable File
<x-app-layout>
|
|
@push('title', __('Photos'))
|
|
|
|
<div class="col-span-12">
|
|
<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 h-12" style="background: linear-gradient(140deg, #3A2068 0%, #3F2673 15%, #493085 30%, #523A97 45%, #5B44A9 60%, #654EBB 75%, #7068D0 90%, #786ED8 100%);">
|
|
<div class="flex items-center justify-center h-full">
|
|
<h2 class="text-white font-bold text-xl">{{ __('Photos') }}</h2>
|
|
</div>
|
|
</div>
|
|
<div class="p-4">
|
|
<x-photos :photos="$photos" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-6">
|
|
{{ $photos->links() }}
|
|
</div>
|
|
</div>
|
|
|
|
@push('javascript')
|
|
<script src="{{ config('habbo.cdn.fancybox_js') }}"></script>
|
|
<link rel="stylesheet" href="{{ config('habbo.cdn.fancybox_css') }}" />
|
|
</x-app-layout>
|