Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created December 22, 2020 21:15
Show Gist options
  • Save NandoKstroNet/6068cf87f8d24ddb6829511637088de8 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/6068cf87f8d24ddb6829511637088de8 to your computer and use it in GitHub Desktop.
Layout Front Projeto com Livewire da http://codeexperts.com.br
<!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