File: /home/lesanew/anestetues2/web/app/themes/anes-tetues/resources/views/layouts/app.blade.php
<!DOCTYPE html>
<html @php(language_attributes())>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
@php(do_action('get_header'))
@php(wp_head())
@vite(['resources/css/app.scss', 'resources/js/app.ts'])
@stack('vite-head')
</head>
<body @php(body_class())>
@php(wp_body_open())
<div id="app">
@include('sections.header')
<main id="main" class="main">
@if (function_exists('wc_print_notices'))
<div class="woocommerce-notices-wrapper">
{!! wc_print_notices() !!}
</div>
@endif
@yield('content')
</main>
@include('sections.footer')
</div>
@php(do_action('get_footer'))
@php(wp_footer())
</body>
</html>