mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
add helper kaninchenbau
This commit is contained in:
13
app/Http/Livewire/Helper/FollowTheRabbit.php
Normal file
13
app/Http/Livewire/Helper/FollowTheRabbit.php
Normal 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
BIN
public/img/news_2.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 485 KiB |
@@ -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
|
||||||
|
|||||||
11
resources/views/livewire/helper/follow-the-rabbit.blade.php
Normal file
11
resources/views/livewire/helper/follow-the-rabbit.blade.php
Normal 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>
|
||||||
@@ -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
|
||||||
|
|||||||
@@ -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');
|
||||||
|
|||||||
Reference in New Issue
Block a user