diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index a7967d03..c855e2d8 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -23,7 +23,7 @@ class Kernel extends ConsoleKernel */ protected function schedule(Schedule $schedule): void { - $schedule->command(CacheRecommendedFees::class)->everyFourHours(); + //$schedule->command(CacheRecommendedFees::class)->everyFourHours(); $schedule->call(new PruneStaleAttachments) ->daily(); $schedule->command(SyncOpenBooks::class) diff --git a/app/Http/Livewire/Specials/BalticSeaCircle.php b/app/Http/Livewire/Specials/BalticSeaCircle.php new file mode 100644 index 00000000..2fe7537a --- /dev/null +++ b/app/Http/Livewire/Specials/BalticSeaCircle.php @@ -0,0 +1,21 @@ +layout('layouts.guest', [ + 'SEOData' => new SEOData( + title: 'Baltic Sea Circle Rally Bitcoin Team 218', + description: 'Besucht das Bitcoin Team 218 von Daktari und Cercatrova zum Start der diesjährigen Baltic Sea Circle Rally', + image: asset('img/bsc/3.jpg'), + ), + ]); + } +} diff --git a/public/img/bsc/1.jpg b/public/img/bsc/1.jpg new file mode 100644 index 00000000..afbd1124 Binary files /dev/null and b/public/img/bsc/1.jpg differ diff --git a/public/img/bsc/10.jpg b/public/img/bsc/10.jpg new file mode 100644 index 00000000..b26c4b44 Binary files /dev/null and b/public/img/bsc/10.jpg differ diff --git a/public/img/bsc/11.jpg b/public/img/bsc/11.jpg new file mode 100644 index 00000000..5e770c51 Binary files /dev/null and b/public/img/bsc/11.jpg differ diff --git a/public/img/bsc/2.jpg b/public/img/bsc/2.jpg new file mode 100644 index 00000000..5ab89a20 Binary files /dev/null and b/public/img/bsc/2.jpg differ diff --git a/public/img/bsc/3.jpg b/public/img/bsc/3.jpg new file mode 100644 index 00000000..9f02d540 Binary files /dev/null and b/public/img/bsc/3.jpg differ diff --git a/public/img/bsc/4.jpg b/public/img/bsc/4.jpg new file mode 100644 index 00000000..32076ad1 Binary files /dev/null and b/public/img/bsc/4.jpg differ diff --git a/public/img/bsc/5.jpg b/public/img/bsc/5.jpg new file mode 100644 index 00000000..7fe70876 Binary files /dev/null and b/public/img/bsc/5.jpg differ diff --git a/public/img/bsc/6.jpg b/public/img/bsc/6.jpg new file mode 100644 index 00000000..77eb6a63 Binary files /dev/null and b/public/img/bsc/6.jpg differ diff --git a/public/img/bsc/7.jpg b/public/img/bsc/7.jpg new file mode 100644 index 00000000..a61cabf0 Binary files /dev/null and b/public/img/bsc/7.jpg differ diff --git a/public/img/bsc/8.jpg b/public/img/bsc/8.jpg new file mode 100644 index 00000000..1cebc894 Binary files /dev/null and b/public/img/bsc/8.jpg differ diff --git a/public/img/bsc/9.jpg b/public/img/bsc/9.jpg new file mode 100644 index 00000000..0c04c45b Binary files /dev/null and b/public/img/bsc/9.jpg differ diff --git a/public/img/bsc/logo.jpg b/public/img/bsc/logo.jpg new file mode 100644 index 00000000..de5bbc45 Binary files /dev/null and b/public/img/bsc/logo.jpg differ diff --git a/public/img/bsc/qr.png b/public/img/bsc/qr.png new file mode 100644 index 00000000..4ba7fea4 Binary files /dev/null and b/public/img/bsc/qr.png differ diff --git a/resources/views/livewire/specials/baltic-sea-circle.blade.php b/resources/views/livewire/specials/baltic-sea-circle.blade.php new file mode 100644 index 00000000..7454efd6 --- /dev/null +++ b/resources/views/livewire/specials/baltic-sea-circle.blade.php @@ -0,0 +1,80 @@ +
+ + +
+ + Bitcoin Team 218 + logo + +
+
+
+

Start am 17.06.2023 09:30 Uhr

+

Baltic Sea Circle Rally + Bitcoin Team 218

+

Besucht das Bitcoin Team 218 von Daktari und + Cercatrova.

+

Gut Barsthorst, Hamburg

+

+ + + Tracking + +

+
+

⚡ Lightning Hupe

+ + qr + +

+ Proof Of Honk - LN Fanfare Team 218 +

+
+
+
+ + + + @push('modals') +
+ + +
+ @endpush +
diff --git a/routes/web.php b/routes/web.php index ddcfc3e3..00f05d80 100644 --- a/routes/web.php +++ b/routes/web.php @@ -3,6 +3,10 @@ use Illuminate\Http\Request; use Laravel\Socialite\Facades\Socialite; +Route::middleware([]) + ->get('/bsc', \App\Http\Livewire\Specials\BalticSeaCircle::class) + ->name('specials.bsc'); + Route::middleware([]) ->get('/', \App\Http\Livewire\Frontend\Welcome::class) ->name('welcome'); @@ -64,7 +68,8 @@ Route::middleware([ ->as('export.') ->prefix('/export') ->group(function () { - Route::get('/meetup-event/{meetupEvent}', \App\Http\Controllers\Export\MeetupEventAttendeesExportController::class) + Route::get('/meetup-event/{meetupEvent}', + \App\Http\Controllers\Export\MeetupEventAttendeesExportController::class) ->name('meetupEvent'); });