Update
This commit is contained in:
@@ -4,6 +4,9 @@
|
||||
* @see https://github.com/artesaos/seotools
|
||||
*/
|
||||
|
||||
$title = 'Meme AI Gen';
|
||||
$description = 'Generate memes using AI';
|
||||
|
||||
return [
|
||||
'inertia' => env('SEO_TOOLS_INERTIA', true),
|
||||
'meta' => [
|
||||
@@ -11,9 +14,9 @@
|
||||
* The default configurations to be used by the meta generator.
|
||||
*/
|
||||
'defaults' => [
|
||||
'title' => 'Video² AI',
|
||||
'title' => $title,
|
||||
'titleBefore' => false, // Put defaults.title before page title, like 'It's Over 9000! - Dashboard'
|
||||
'description' => 'A new era of AI-powered video creation',
|
||||
'description' => $description,
|
||||
'separator' => ' - ',
|
||||
'keywords' => [],
|
||||
'canonical' => false, // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
|
||||
@@ -38,8 +41,8 @@
|
||||
* The default configurations to be used by the opengraph generator.
|
||||
*/
|
||||
'defaults' => [
|
||||
'title' => 'Video² AI',
|
||||
'description' => 'A new era of AI-powered video creation',
|
||||
'title' => $title,
|
||||
'description' => $description,
|
||||
'url' => false, // Set null for using Url::current(), set false to total remove
|
||||
'type' => false,
|
||||
'site_name' => false,
|
||||
@@ -60,8 +63,8 @@
|
||||
* The default configurations to be used by the json-ld generator.
|
||||
*/
|
||||
'defaults' => [
|
||||
'title' => 'Video² AI',
|
||||
'description' => 'A new era of AI-powered video creation',
|
||||
'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
|
||||
'type' => 'WebPage',
|
||||
'images' => [],
|
||||
|
||||
Reference in New Issue
Block a user