mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-app.git
synced 2025-12-14 12:06:46 +00:00
📚 Added "BooksForPlebs" book rental guide for Bitcoin meetups and integrated "FollowTheRabbit" feature to explore Bitcoin rabbit hole themes.
This commit is contained in:
20
app/Livewire/BooksForPlebs/BookRentalGuide.php
Normal file
20
app/Livewire/BooksForPlebs/BookRentalGuide.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\BooksForPlebs;
|
||||
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class BookRentalGuide extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.books-for-plebs.book-rental-guide')->with( [
|
||||
'SEOData' => new SEOData(
|
||||
title: __('BooksForPlebs'),
|
||||
description: __('Lokale Buchausleihe für Bitcoin-Meetups.'),
|
||||
image: asset('img/book-rental.jpg')
|
||||
),
|
||||
]);
|
||||
}
|
||||
}
|
||||
20
app/Livewire/Helper/FollowTheRabbit.php
Normal file
20
app/Livewire/Helper/FollowTheRabbit.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Livewire\Helper;
|
||||
|
||||
use Livewire\Component;
|
||||
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
||||
|
||||
class FollowTheRabbit extends Component
|
||||
{
|
||||
public function render()
|
||||
{
|
||||
return view('livewire.helper.follow-the-rabbit')->with([
|
||||
'SEOData' => new SEOData(
|
||||
title: __('Bitcoin - Rabbit Hole'),
|
||||
description: __('Dies ist ein großartiger Überblick über die Bitcoin-Kaninchenhöhle mit Zugängen zu Bereichen, die Bitcoin umfasst. Jedes Thema hat seine eigene Kaninchenhöhle, die durch Infografiken auf einfache und verständliche Weise visualisiert wird, mit QR-Codes, die zu erklärenden Videos und Artikeln führen. Viel Spaß auf Ihrer Entdeckungsreise!'),
|
||||
image: asset('img/kaninchenbau.png')
|
||||
),
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user