<?php  
/** 
 * Luminova Framework 
 * 
 * @package Luminova 
 * @author Ujah Chigozie Peter 
 * @copyright (c) Nanoblock Technology Ltd 
 * @license See LICENSE file 
 * @link https://luminova.ng/docs/3.2.6/seo/schema 
 */ 
 
return [ 
    'name'                  => APP_NAME, 
    'short_name'            => 'Short Name', 
    'company_brands'        => [ 
        'Technology', 
        'Luminova' 
    ], 
    'company_name'          => 'Company Name', 
    'company_duns'          => null, 
    'company_email'         => null, 
    'company_description'   => 'Company Description', 
    'title'                 => 'Website Main Title', 
    'page_description'      => 'Webpage Main Description.', 
    'site_id'               => href(null, true), 
    'start_url'             => href('/', true), 
    'assets'                => asset('/', true), 
    'image_assets'          => asset('images', true), 
    'host_name'             => APP_HOSTNAME, 
    'logo_image_name'       => 'app-square-logo.png', 
    'logo_image_width'      => 512, 
    'logo_image_height'     => 106, 
    'image_name'            => 'app-square-icon.png', 
    'image_width'           => 512, 
    'image_height'          => 512, 
    'image_type'            => 'image/png', 
    'published_date'        => '2022-03-04T06:45:20+00:00', 
    'modified_date'         => '2023-07-15T03:47:59+00:00', 
    'category'              => 'Website Category', 
    'article_keywords'      => [], 
    'language'              => 'en-US', 
    'locale'                => locale(), 
    'article_section'       => [], 
    'twitter_name'          => null, 
    'social_media'          => [], 
    'breadcrumbs'           => [], 
    'keywords'              => [], 
];
 
 |