Files
Archive/retro/atomcms/resources/themes/atom/views/components/header/auth.blade.php

27 lines
1.7 KiB
PHP

@auth
<div class="relative flex items-center justify-center w-full h-full px-10 max-w-7xl md:justify-between">
<div class="flex flex-col items-center justify-center w-full gap-6 md:flex-row">
<a href="{{ route('index') }}" class="transition-all duration-300 hover:scale-110">
<img src="{{ asset('images/logo.png') }}" alt="logo" class="drop-shadow" />
</a>
<div class="hidden md:flex items-center bg-white dark:bg-gray-900 dark:text-white px-4 rounded-md relative h-[50px]">
<div class="absolute w-6 h-6 rotate-45 bg-white -left-1 dark:bg-gray-900"></div>
<span class="relative">{{ __(':online :hotel online', ['online' => $online, 'hotel' => $settings->get('hotel_name')]) }}</span>
</div>
<div class="flex items-center gap-3 ml-auto">
<a href="{{ route('game.nitro') }}">
<button class="relative hidden px-6 py-2 text-lg font-semibold text-black transition duration-300 ease-in-out bg-white rounded-full bg-opacity-90 hover:bg-opacity-100 dark:bg-gray-900 dark:text-white md:block">
{{ __('Nitro client') }}
</button>
</a>
<a href="{{ route('game.cool-ui') }}">
<button class="relative hidden px-6 py-2 text-lg font-semibold text-black transition duration-300 ease-in-out bg-gradient-to-r from-blue-500 to-purple-500 text-white rounded-full bg-opacity-90 hover:bg-opacity-100 hover:scale-105 dark:from-blue-600 dark:to-purple-600 md:block">
Cool UI
</button>
</a>
</div>
</div>
</div>
@endauth