Skip to content
This repository was archived by the owner on Dec 11, 2021. It is now read-only.

Commit a92b819

Browse files
committed
Update app layouts
1 parent 9c842be commit a92b819

File tree

2 files changed

+13
-15
lines changed

2 files changed

+13
-15
lines changed

stubs/resources/dark/views/layouts/app.blade.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,16 @@
99

1010
<title>{{ config('app.name', 'Laravel') }}</title>
1111

12-
<!-- Scripts -->
13-
<script src="{{ asset('js/app.js') }}" defer></script>
12+
<!-- Styles -->
13+
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
1414

1515
<!-- Fonts -->
16-
<link rel="dns-prefetch" href="//fonts.gstatic.com">
1716
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
18-
19-
<!-- Styles -->
20-
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
17+
18+
<!-- Scripts -->
19+
<script src="{{ asset('js/app.js') }}" defer></script>
2120
</head>
22-
<body class="h-screen bg-gray-900 font-nunito">
21+
<body class="bg-gray-900 font-nunito">
2322
<div id="app">
2423
<nav class="bg-gray-800 shadow-sm">
2524
<div class="container flex justify-between items-center mx-auto px-6 py-4">

stubs/resources/light/views/layouts/app.blade.php

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,17 @@
88
<meta name="csrf-token" content="{{ csrf_token() }}">
99

1010
<title>{{ config('app.name', 'Laravel') }}</title>
11-
12-
<!-- Scripts -->
13-
<script src="{{ asset('js/app.js') }}" defer></script>
11+
12+
<!-- Styles -->
13+
<link href="{{ asset('css/app.css') }}" rel="stylesheet">
1414

1515
<!-- Fonts -->
16-
<link rel="dns-prefetch" href="//fonts.gstatic.com">
1716
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
18-
19-
<!-- Styles -->
20-
<link href="{{ mix('css/app.css') }}" rel="stylesheet">
17+
18+
<!-- Scripts -->
19+
<script src="{{ asset('js/app.js') }}" defer></script>
2120
</head>
22-
<body class="h-screen bg-gray-100 font-nunito">
21+
<body class="bg-gray-100 font-nunito">
2322
<div id="app">
2423
<nav class="bg-white shadow-sm">
2524
<div class="container flex justify-between items-center mx-auto px-6 py-4">

0 commit comments

Comments
 (0)