📚 Added "BooksForPlebs" book rental guide for Bitcoin meetups and integrated "FollowTheRabbit" feature to explore Bitcoin rabbit hole themes.

This commit is contained in:
HolgerHatGarKeineNode
2025-11-21 19:37:50 +01:00
parent 7c85fdcefb
commit 2888a723f7
10 changed files with 451 additions and 6 deletions

View 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')
),
]);
}
}