This commit is contained in:
ct
2025-07-15 07:35:25 +08:00
parent ce4a7c76f3
commit 1cb695ff5c
18 changed files with 58 additions and 25 deletions

View File

@@ -3,12 +3,13 @@
/**
* @see https://github.com/artesaos/seotools
*/
$title = 'MEMEFAST';
$description = 'Simple, fast, and free meme video editor
';
$title = 'MEMEFAST: Make meme in seconds';
$description = 'Simple & fast meme video editor';
return [
'inertia' => env('SEO_TOOLS_INERTIA', true),
'inertia' => env('SEO_TOOLS_INERTIA', false),
'meta' => [
/*
* The default configurations to be used by the meta generator.
@@ -46,7 +47,9 @@
'url' => false, // Set null for using Url::current(), set false to total remove
'type' => false,
'site_name' => false,
'images' => [],
'images' => [
'memefast-og.jpg',
],
],
],
'twitter' => [
@@ -54,8 +57,13 @@
* The default values to be used by the twitter cards generator.
*/
'defaults' => [
// 'card' => 'summary',
// 'site' => '@LuizVinicius73',
'card' => 'summary',
'site' => '@memefast',
'title' => $title,
'description' => $description,
'image' => 'memefast-og.jpg',
//'creator' => '@memefast',
//'url' => , // Set null for using Url::current(), set false to total remove
],
],
'json-ld' => [
@@ -65,9 +73,11 @@
'defaults' => [
'title' => $title,
'description' => $description,
'url' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'url' => null, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'type' => 'WebPage',
'images' => [],
'images' => [
'memefast-og.jpg',
],
],
],
];