41 lines
1.0 KiB
PHP
41 lines
1.0 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title> @yield('title') </title>
|
|
|
|
<!-- Fonts -->
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=instrument-sans:400,500,600" rel="stylesheet" />
|
|
@vite('resources/css/app.css')
|
|
|
|
</head>
|
|
<header>
|
|
<nav class="nav-bar">
|
|
<div class="nav-bar-logo">
|
|
<!-- <img src="{{ Vite::asset('resources/images/logo.png') }}" alt="Logo"> -->
|
|
</div>
|
|
|
|
@auth
|
|
<a href="{{ route('dashboard') }}">Início</a>
|
|
<a href="{{ route('login') }}">Login</a>
|
|
@endauth
|
|
@guest
|
|
<a href="{{ route('users.create') }}">Início</a>
|
|
<a href="{{ route('login') }}">Contato</a>
|
|
<a href="{{ route('users.create') }}">Sobre</a>
|
|
@endguest
|
|
</nav>
|
|
</header>
|
|
|
|
<body>
|
|
@yield('content')
|
|
|
|
@vite('resources/js/app.js')
|
|
</body>
|
|
|
|
|
|
</html> |