add helper kaninchenbau

This commit is contained in:
HolgerHatGarKeineNode
2023-05-15 16:58:27 +02:00
parent e1896d4fc8
commit 3e50a49680
6 changed files with 30 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
<?php
namespace App\Http\Livewire\Helper;
use Livewire\Component;
class FollowTheRabbit extends Component
{
public function render()
{
return view('livewire.helper.follow-the-rabbit');
}
}

BIN
public/img/news_2.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 485 KiB

View File

@@ -101,7 +101,7 @@
class="absolute bottom-0 left-0 z-10 w-full h-full opacity-30 bg-gradient-to-b from-transparent to-gray-900"></div> class="absolute bottom-0 left-0 z-10 w-full h-full opacity-30 bg-gradient-to-b from-transparent to-gray-900"></div>
<img <img
class="absolute inset-0 object-cover object-center w-full h-full transition duration-500 lg:opacity-80 group-hover:opacity-100 group-hover:scale-110" class="absolute inset-0 object-cover object-center w-full h-full transition duration-500 lg:opacity-80 group-hover:opacity-100 group-hover:scale-110"
src="{{ asset('img/Krypto-Fiat-Bros.webp') }}" alt=""> src="{{ asset('img/news_2.png') }}" alt="">
</div> </div>
<div class="relative z-10 flex flex-col items-start justify-start w-full px-6 py-7"> <div class="relative z-10 flex flex-col items-start justify-start w-full px-6 py-7">
<span <span

View File

@@ -0,0 +1,11 @@
<div class="h-screen w-full">
<livewire:frontend.header :country="null"/>
<div class="px-2 sm:px-24">
<iframe allowfullscreen="true" src="https://www.easyzoom.com/embed/afa0fda48faa425eb20f323e03cae346" width="100%"
style="height: 90vh;"></iframe>
</div>
<livewire:frontend.footer/>
</div>

View File

@@ -92,7 +92,7 @@
</div> </div>
</div> </div>
<div class="pt-12" x-show="!currentUser"> <div class="pt-12">
{{ __('Scan this code or copy & paste it to your lightning wallet. Or click to login with your wallet.') }} {{ __('Scan this code or copy & paste it to your lightning wallet. Or click to login with your wallet.') }}
</div> </div>
@endif @endif

View File

@@ -11,6 +11,10 @@ Route::middleware([])
->get('/hello', \App\Http\Livewire\Hello::class) ->get('/hello', \App\Http\Livewire\Hello::class)
->name('hello'); ->name('hello');
Route::middleware([])
->get('/kaninchenbau', \App\Http\Livewire\Helper\FollowTheRabbit::class)
->name('kaninchenbau');
Route::get('/img/{path}', \App\Http\Controllers\ImageController::class) Route::get('/img/{path}', \App\Http\Controllers\ImageController::class)
->where('path', '.*') ->where('path', '.*')
->name('img'); ->name('img');