first commit

This commit is contained in:
ct
2023-07-25 01:06:06 +08:00
commit 94e320735c
133 changed files with 15373 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<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="description" content="">
<title>{{ config('app.name', 'Laravel') }}</title>
@vite('resources/sass/front-app.scss')
<!-- Custom styles for this Page-->
@yield('custom_styles')
@include('layouts.front.header')
</head>
<body>
@include('layouts.front.navigation')
@yield('content')
@include('layouts.front.footer')
<!-- Core plugin JavaScript-->
@vite('resources/js/front-app.js')
<!-- Page level custom scripts -->
@yield('custom_scripts')
</body>
</html>