mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
22 lines
642 B
PHP
22 lines
642 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Specials;
|
|
|
|
use Livewire\Component;
|
|
use RalphJSmit\Laravel\SEO\Support\SEOData;
|
|
|
|
class BalticSeaCircle extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.specials.baltic-sea-circle')
|
|
->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'),
|
|
),
|
|
]);
|
|
}
|
|
}
|