diff --git a/app/Http/Livewire/BookCase/HighscoreTable.php b/app/Http/Livewire/BookCase/HighscoreTable.php index 80746642..444714ef 100644 --- a/app/Http/Livewire/BookCase/HighscoreTable.php +++ b/app/Http/Livewire/BookCase/HighscoreTable.php @@ -5,6 +5,7 @@ namespace App\Http\Livewire\BookCase; use App\Models\Country; use App\Models\User; use Livewire\Component; +use RalphJSmit\Laravel\SEO\Support\SEOData; class HighscoreTable extends Component { @@ -19,6 +20,12 @@ class HighscoreTable extends Component ]) ->orderByDesc('orange_pills_count') ->get(), + ])->layout('layouts.app', [ + 'SEOData' => new SEOData( + title: __('Highscore Table'), + description: __('Hall of fame of our honorable plebs'), + image: asset('img/highscore_table_screenshot.png'), + ) ]); } } diff --git a/public/img/highscore_table_screenshot.png b/public/img/highscore_table_screenshot.png new file mode 100644 index 00000000..cc5e3e06 Binary files /dev/null and b/public/img/highscore_table_screenshot.png differ diff --git a/resources/lang/de.json b/resources/lang/de.json index c01c4f03..dd21ebc4 100644 --- a/resources/lang/de.json +++ b/resources/lang/de.json @@ -621,5 +621,6 @@ "Venues in the surrounding area.": "Veranstaltungsorte in der Umgebung.", "nova-spatie-permissions::lang.display_names\": \"": "", "PlebArt": "", - "Highscore Table": "Highscore-Tabelle" + "Highscore Table": "Highscore-Tabelle", + "Hall of fame of our honorable plebs": "Hall of fame unserer Plebs" } diff --git a/resources/lang/en.json b/resources/lang/en.json index 42f75454..586b320b 100644 --- a/resources/lang/en.json +++ b/resources/lang/en.json @@ -613,5 +613,6 @@ "Lecturers in the surrounding area.": "", "Venues in the surrounding area.": "", "PlebArt": "", - "Highscore Table": "" + "Highscore Table": "", + "Hall of fame of our honorable plebs": "" }