Initial Commit

This commit is contained in:
2026-01-07 15:46:00 +01:00
commit 7133af82e3
1454 changed files with 362274 additions and 0 deletions

69
config/seotools.php Normal file
View File

@@ -0,0 +1,69 @@
<?php
/**
* @see https://github.com/artesaos/seotools
*/
return [
'inertia' => env('SEO_TOOLS_INERTIA', false),
'meta' => [
/*
* The default configurations to be used by the meta generator.
*/
'defaults' => [
'title' => "Fitness leicht gemacht Tipps, Training & Ernährung", // set false to total remove
'titleBefore' => false, // Put defaults.title before page title, like 'It's Over 9000! - Dashboard'
'description' => 'Effektive Fitness-Tipps, Trainingspläne und gesunde Ernährung. Lerne, wie du Muskeln aufbaust, Fett verlierst und langfristig gesund bleibst.', // set false to total remove
'separator' => ' - ',
'keywords' => ['Fitness Blog, Fitness Tipps, Muskelaufbau, Fettabbau, gesund abnehmen, Training zu Hause, Krafttraining, Ernährung für Fitness, Workout Plan, Fitness Motivation, Fitness Wissen, Anfänger Training, Fitness Ernährung, Fitness Ratgeber'],
'canonical' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'robots' => 'all', // Set to 'all', 'none' or any combination of index/noindex and follow/nofollow
],
/*
* Webmaster tags are always added.
*/
'webmaster_tags' => [
'google' => null,
'bing' => null,
'alexa' => null,
'pinterest' => null,
'yandex' => null,
'norton' => null,
],
'add_notranslate_class' => false,
],
'opengraph' => [
/*
* The default configurations to be used by the opengraph generator.
*/
'defaults' => [
'title' => 'Fitness leicht gemacht Tipps, Training & Ernährung', // set false to total remove
'description' => 'Effektive Fitness-Tipps, Trainingspläne und gesunde Ernährung. Lerne, wie du Muskeln aufbaust, Fett verlierst und langfristig gesund bleibst.', // set false to total remove
'url' => false, // Set null for using Url::current(), set false to total remove
'type' => false,
'site_name' => false,
'images' => [],
],
],
'twitter' => [
/*
* The default values to be used by the twitter cards generator.
*/
'defaults' => [
//'card' => 'summary',
//'site' => '@LuizVinicius73',
],
],
'json-ld' => [
/*
* The default configurations to be used by the json-ld generator.
*/
'defaults' => [
'title' => 'Fitness leicht gemacht Tipps, Training & Ernährung', // set false to total remove
'description' => 'Effektive Fitness-Tipps, Trainingspläne und gesunde Ernährung. Lerne, wie du Muskeln aufbaust, Fett verlierst und langfristig gesund bleibst.', // set false to total remove
'url' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'type' => 'WebPage',
'images' => [],
],
],
];