Created
December 22, 2020 21:15
-
-
Save NandoKstroNet/6068cf87f8d24ddb6829511637088de8 to your computer and use it in GitHub Desktop.
Layout Front Projeto com Livewire da http://codeexperts.com.br
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Laravel</title> | |
<!-- Fonts --> | |
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet"> | |
<!-- Styles --> | |
<link rel="stylesheet" href="{{asset('css/app.css')}}"> | |
<style> | |
body { | |
font-family: 'Nunito'; | |
} | |
</style> | |
@livewireStyles | |
<script src="https://cdn.jsdelivr.net/gh/alpinejs/[email protected]/dist/alpine.js" defer></script> | |
</head> | |
<body class="antialiased"> | |
<div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center sm:pt-0"> | |
{{$slot}} | |
@livewireScripts | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment