ECOMMERCE/resources/views/layouts/landing.blade.php

26 lines
379 B
PHP

<!DOCTYPE html>
<html lang="en" data-bs-theme="light" data-pwa="true">
<head>
@include('layouts.partials/title-meta')
@vite(['resources/js/theme-switcher.js'])
@include('layouts.partials/head-css')
@yield('css')
</head>
<body>
@yield('content')
@include('layouts.partials/back-to-top')
@vite(['resources/js/theme.js'])
@yield('scripts')
</body>
</html>