feat: prepping launch

This commit is contained in:
2023-12-14 11:30:49 -06:00
parent c352d4d273
commit 2ec4405b7b
49 changed files with 3006 additions and 182 deletions

View File

@@ -5,13 +5,17 @@
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>.: {{ $pageTitle ?? 'Site' }} - No Agenda Art Generator :.</title>
@if(View::hasSection('page-title'))
<title>.: @yield('page-title') - No Agenda Art Generator :.</title>
@else
<title>.: No Agenda Art Generator :.</title>
@endif
@include('partials/favicon')
@vite(['resources/scss/app.scss'])
@livewireStyles
@yield('additional_headers')
</head>
<body{!! Session::get('preferred_theme') == 'light' ? ' class="theme-light"' : '' !!}>
<body{!! Session::get('preferred_theme') === 'light' ? ' class="theme-light"' : '' !!} data-preferred_theme="{!! Session::get('preferred_theme') !!}">
@include('partials/preloader')
@include('partials/nav/head')