This commit is contained in:
2023-11-28 04:39:36 +08:00
parent a9ac0e48b3
commit dc37274b6c
86 changed files with 2106 additions and 191 deletions

View File

@@ -13,15 +13,14 @@
<meta property="fb:app_id" content="{{ config('seotools.fb_app_id') }}" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<link rel="icon" type="image/x-icon" href="{{ asset('favicon.ico') }}">
<link rel="icon" href="{{ asset('ai-buddy-tool-logo-512x512.svg') }}" type="image/svg+xml">
<link rel="apple-touch-icon" sizes="180x180" href="{{ asset('apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ asset('favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ asset('favicon-16x16.png') }}">
<link rel="manifest" href="{{ asset('site.webmanifest') }}">
@vite('resources/sass/app-front.scss')
@stack('top_head')
<!-- Custom styles for this Page-->
@yield('custom_styles')
@@ -31,19 +30,23 @@
<body>
@include('googletagmanager::body')
<div id="app">
@include('front.layouts.navigation')
@include('googletagmanager::body')
@yield('content')
@include('front.layouts.navigation')
@include('front.layouts.footer')
@yield('content')
<!-- Core plugin JavaScript-->
@vite('resources/js/app-front.js')
@include('front.layouts.footer')
<!-- Page level custom scripts -->
@yield('custom_scripts')
<!-- Core plugin JavaScript-->
@vite('resources/js/app-front.js')
<!-- Page level custom scripts -->
@yield('custom_scripts')
</div>
</body>