Files
investbrain/resources/views/layouts/main-layout.blade.php
T

25 lines
789 B
PHP
Raw Normal View History

2024-08-05 22:41:53 -05:00
<!DOCTYPE html>
2024-08-01 13:53:10 -05:00
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="csrf-token" content="{{ csrf_token() }}">
2024-10-25 15:24:48 -05:00
<link rel="icon" href="{{ asset('favicon.svg') }}">
2024-08-01 13:53:10 -05:00
2024-08-26 19:09:33 -05:00
<title>{{ config('app.name', 'Investbrain') }}</title>
2024-08-01 13:53:10 -05:00
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
@vite(['resources/css/app.css', 'resources/js/app.js'])
@livewireStyles
</head>
2024-08-23 18:45:22 -05:00
<body {{ $attributes?->merge(['class']) }}>
2024-08-01 13:53:10 -05:00
2024-08-23 18:45:22 -05:00
@yield('body', $body ?? '')
2024-08-01 13:53:10 -05:00
@livewireScripts
</body>
</html>