diff options
| author | Nick Van Doorn <nick@nvandoorn.com> | 2025-04-21 15:04:28 -0700 |
|---|---|---|
| committer | Nick Van Doorn <nick@nvandoorn.com> | 2025-04-21 15:04:28 -0700 |
| commit | 9cdf46ae1ceff8dce9dd5b1c8587f2d948a88e2c (patch) | |
| tree | 863cf7e6738a4cd432ac9c0106d48bb2294d0f32 /resources/views/components/layout.blade.php | |
Diffstat (limited to 'resources/views/components/layout.blade.php')
| -rw-r--r-- | resources/views/components/layout.blade.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/resources/views/components/layout.blade.php b/resources/views/components/layout.blade.php new file mode 100644 index 0000000..b77a97f --- /dev/null +++ b/resources/views/components/layout.blade.php @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <title>{{ config('app.name', 'Laravel') }}</title> + @vite(['resources/css/app.css', 'resources/js/app.js']) +</head> +<body> + {{ $slot }} +</body> +</html>
\ No newline at end of file |
