@php
$google_fonts_string = '';
$theme_google_fonts = Theme::getSetting('landingPage.googleFonts');
$app_js_path = 'resources/views/' . get_theme() . '/js/app.js';
$i = 0;
foreach ($theme_google_fonts as $font_name => $weights) {
$font_string = 'family=' . str_replace(' ', '+', $font_name);
if (!empty($weights)) {
$font_string .= ':wght@' . implode(';', $weights);
}
$google_fonts_string .= $font_string . ($i === count($theme_google_fonts) - 1 ? '' : '&');
$i++;
}
@endphp
@if (isset($setting->meta_keywords))
@endif
{{ getMetaTitle($setting) }}
@if (filled($google_fonts_string))
@endif
@php
$link = 'resources/views/' . get_theme() . '/scss/landing-page.scss';
@endphp
@vite($link)
@if ($setting->frontend_custom_css != null)
@endif
@if ($setting->frontend_code_before_head != null)
{!! $setting->frontend_code_before_head !!}
@endif
{!! adsense_header() !!}
{{-- Rewordfull start --}}
{{-- --}}
{{-- --}}
{{-- Rewordfull end --}}
@vite($app_js_path)
@stack('css')
@if (setting('additional_custom_css') != null)
{!! setting('additional_custom_css') !!}
@endif
{{ data_get($data, 'header') }}
{{ data_get($data, 'paragraph') }}
{!! data_get($data, 'footer') !!}