
* #9 - set up inertia and tailwind * #9 - fix * #9 - headless ui, heroicons and some webpack stuff * #9 - fix * #9 - fix * #9 - fix * #9 - eslint * #9 - github pr review * #9 - run linter manually * Update resources/js/Pages/Dashboard.vue Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * #9 - fix * Update .eslintrc.js Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ewelina Lasowy <56546832+EwelinaLasowy@users.noreply.github.com>
15 lines
443 B
PHP
15 lines
443 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="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>
|