31 lines
989 B
PHP
31 lines
989 B
PHP
<!DOCTYPE html>
|
|
<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() }}">
|
|
|
|
{{-- <title>{{ config('app.name', 'SIMANTA') }}</title> --}}
|
|
|
|
<title>SIMANTA</title>
|
|
<link rel="shortcut icon" href="{{ asset('./assets/landingpage/img/simanta-icon.png') }}" type="image/x-icon">
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
|
|
|
|
<!-- Scripts -->
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
|
|
<!-- Styles -->
|
|
@livewireStyles
|
|
</head>
|
|
<body>
|
|
<div class="font-sans text-gray-900 antialiased">
|
|
{{ $slot }}
|
|
</div>
|
|
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|