Files
aibuddytool/config/seotools.php
2023-11-28 15:11:01 +08:00

83 lines
3.1 KiB
PHP

<?php
/**
* @see https://github.com/artesaos/seotools
*/
return [
'fb_app_id' => '311654518451764',
'meta' => [
/*
* The default configurations to be used by the meta generator.
*/
'defaults' => [
'title' => 'AI Buddy Tool', // set false to total remove
'titleBefore' => false, // Put defaults.title before page title, like 'It's Over 9000! - Dashboard'
'description' => 'Your friendly AI tool directory platform. Discover AI Tools for any task!', // set false to total remove
'separator' => ' - ',
'keywords' => [
'ai tools directory',
'yellow page ai tools',
],
'canonical' => 'full', // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'robots' => false, // 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' => 'AI Buddy Tool', // set false to total remove
'description' => 'Your friendly AI tool directory platform. Discover AI Tools for any task!', // set false to total remove
'url' => null, // Set null for using Url::current(), set false to total remove
'type' => 'website',
'site_name' => 'AI Buddy Tool',
'images' => [
'https://cdn.aibuddytool.com/aibuddytool-og.webp',
'https://cdn.aibuddytool.com/aibuddytool-og.png',
'https://cdn.aibuddytool.com/aibuddytool-og.jpg',
],
],
],
'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' => 'AI Buddy Tool', // set false to total remove
'description' => 'Your friendly AI tool directory platform. Discover AI Tools for any task!', // set false to total remove
'url' => 'current', // Set to null or 'full' to use Url::full(), set to 'current' to use Url::current(), set false to total remove
'type' => 'WebPage',
'images' => [
'https://cdn.aibuddytool.com/aibuddytool-og.webp',
'https://cdn.aibuddytool.com/aibuddytool-og.png',
'https://cdn.aibuddytool.com/aibuddytool-og.jpg',
],
],
],
];