toby/resources/views/app.blade.php
Adrian Hopek e015f02892
#11 - basic layout (#15)
* #11 - basic layout

* #5 - bump dependencies

* #11 - fix

* #11 - fix

* #11 - fix logo
2022-01-12 14:18:25 +01:00

16 lines
486 B
PHP

<!DOCTYPE html>
<html class="h-full bg-gray-100">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<link rel="icon" href="/img/icon.png">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link href="{{ asset('/css/app.css') }}" rel="stylesheet"/>
<script src="{{ asset('/js/app.js') }}" defer></script>
@inertiaHead
</head>
<body class="h-full">
@inertia
</body>
</html>